airplaneMode method

Future<bool?> airplaneMode()

Open iOS settings in airplane Mode section` returns operation successful or failure.

Implementation

Future<bool?> airplaneMode() {
  return postMessage<bool?>(action: 'App-Prefs:AIRPLANE_MODE');
}