startIntent method Null safety

Future<bool> startIntent (
  1. NotificationTroubleshootActions action
)

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;
}