openSystemAlertWindowSettings static method

Future<bool> openSystemAlertWindowSettings({
  1. bool forceOpen = false,
})

Open the settings page where you can allow/deny the "android.permission.SYSTEM_ALERT_WINDOW" permission.

Pass the forceOpen bool to open the permissions page even if granted.

Implementation

static Future<bool> openSystemAlertWindowSettings({bool forceOpen = false}) =>
    FlutterForegroundTaskPlatform.instance
        .openSystemAlertWindowSettings(forceOpen: forceOpen);