AndroidIntent constructor
const
AndroidIntent({})
Builds an Android intent with the following parameters
action
refers to the action parameter of the intent.
flags
is the list of int that will be converted to native flags.
category
refers to the category of the intent, can be null.
data
refers to the string format of the URI that will be passed to
intent.
arguments
is the map that will be converted into an extras bundle and
passed to the intent.
package
refers to the package parameter of the intent, can be null.
componentName
refers to the component name of the intent, can be null.
If not null, then package
but also be provided.
type
refers to the type of the intent, can be null.
Implementation
const AndroidIntent({
this.action,
this.flags,
this.category,
this.data,
this.arguments,
this.package,
this.componentName,
Platform? platform,
this.type,
}) : assert(action != null || componentName != null,
'action or component (or both) must be specified'),
_channel = const MethodChannel(_kChannelName),
_platform = platform ?? const LocalPlatform();