Allow receipt of intents with no action (#9)
This commit is contained in:
parent
798c7cac03
commit
1aa0f00345
2 changed files with 3 additions and 3 deletions
|
@ -10,7 +10,7 @@ class Intent {
|
||||||
final bool isNull;
|
final bool isNull;
|
||||||
final String? fromPackageName;
|
final String? fromPackageName;
|
||||||
final List<String>? fromSignatures;
|
final List<String>? fromSignatures;
|
||||||
final String action;
|
final String? action;
|
||||||
final String? data;
|
final String? data;
|
||||||
final List<String>? categories;
|
final List<String>? categories;
|
||||||
final Map<String, dynamic>? extra;
|
final Map<String, dynamic>? extra;
|
||||||
|
@ -21,7 +21,7 @@ class Intent {
|
||||||
this.isNull = true,
|
this.isNull = true,
|
||||||
this.fromPackageName,
|
this.fromPackageName,
|
||||||
this.fromSignatures,
|
this.fromSignatures,
|
||||||
required this.action,
|
this.action,
|
||||||
this.data,
|
this.data,
|
||||||
this.categories,
|
this.categories,
|
||||||
this.extra,
|
this.extra,
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
name: receive_intent
|
name: receive_intent
|
||||||
description: Flutter plugin for passing Android Intents to the Flutter environment.
|
description: Flutter plugin for passing Android Intents to the Flutter environment.
|
||||||
version: 0.1.6
|
version: 0.2.0
|
||||||
homepage: https://github.com/daadu/receive_intent
|
homepage: https://github.com/daadu/receive_intent
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
|
|
Loading…
Reference in a new issue