bluetooth method

Future<bool?> bluetooth()

Open iOS settings in Bluetooth section. returns operation successful or failure.

Implementation

Future<bool?> bluetooth() {
  return postMessage<bool?>(action: 'App-prefs:=Bluetooth');
}