ActivityPlugin

Getechnologies: Activity

Launch and get response other apps,use intents when the platform is Android.

Usage

Minimal example startActivityForResult

if (platform.isAndroid) {
const intent = AndroidIntent(action: 'getmx.PAY',arguments: {'amount': 90,'currency': 'MXN'});
Map<String,dynamic>? map = await activityPlugin.startActivityForResult(intent);
}