bluetooth method

Future<bool> bluetooth()

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

Implementation

Future<bool> bluetooth() {
  return sendCustomMessage(
    'android.settings.BLUETOOTH_SETTINGS',
  );
}