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 String? fromPackageName;
|
||||
final List<String>? fromSignatures;
|
||||
final String action;
|
||||
final String? action;
|
||||
final String? data;
|
||||
final List<String>? categories;
|
||||
final Map<String, dynamic>? extra;
|
||||
|
@ -21,7 +21,7 @@ class Intent {
|
|||
this.isNull = true,
|
||||
this.fromPackageName,
|
||||
this.fromSignatures,
|
||||
required this.action,
|
||||
this.action,
|
||||
this.data,
|
||||
this.categories,
|
||||
this.extra,
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
name: receive_intent
|
||||
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
|
||||
|
||||
environment:
|
||||
|
|
Loading…
Reference in a new issue