startIntent method Null safety
Start intent
Implementation
static Future<bool> startIntent(NotificationTroubleshootActions action) async {
if (kIsWeb || !Platform.isAndroid) {
return false;
}
final bool? res = await _channel.invokeMethod<bool>('startIntent', {'action': _mapAction(action)});
return res ?? false;
}