openApplicationSettings property

Future<bool> openApplicationSettings

Request to open Application Settings from device.

For Android, this will does nothing.

Implementation

Future<bool> get openApplicationSettings async {
  final result = await _methodChannel.invokeMethod('openApplicationSettings');

  if (result is bool) {
    return result;
  }

  return result == 1;
}