availableActions property

Available actions on device. If the device has actions available, user can run startIntent for each one to check the settings on these screens and correct them if necessary

Implementation

static Future<List<NotificationTroubleshootActions>>
    get availableActions async {
  if (kIsWeb || !Platform.isAndroid) {
    return const <NotificationTroubleshootActions>[];
  }
  List<String>? version =
      await _channel.invokeListMethod<String>('availableActions');
  return version?.map((value) => _mapActionString(value)).toList() ??
      const <NotificationTroubleshootActions>[];
}