launch method
Launch the intent.
This works only on Android platforms.
Implementation
Future<void> launch() async {
if (!_platform!.isAndroid) {
return;
}
await _channel!.invokeMethod<void>('launch', _buildArguments());
}
Launch the intent.
This works only on Android platforms.
Future<void> launch() async {
if (!_platform!.isAndroid) {
return;
}
await _channel!.invokeMethod<void>('launch', _buildArguments());
}