broadcast method
Implementation
Future<void> broadcast(
FlutterAndroidIntent intent, {
bool debug = false,
}) async {
await _shell.exec([
'am',
'broadcast',
...intent.asArguments(),
], debug: debug);
}
Future<void> broadcast(
FlutterAndroidIntent intent, {
bool debug = false,
}) async {
await _shell.exec([
'am',
'broadcast',
...intent.asArguments(),
], debug: debug);
}