personalHotspot method

Future<bool?> personalHotspot()

Open iOS settings in Personal Hotspot section. returns operation successful or failure.

Implementation

Future<bool?> personalHotspot() {
  return postMessage<bool?>(action: 'App-prefs:INTERNET_TETHERING');
}