enableBluetooth method

Future<void> enableBluetooth()

Enables bluetooth.

Doesn't work on Android versions lower than 12.

Implementation

Future<void> enableBluetooth() {
  return platform.action.mobile(
    android: platform.android.enableBluetooth,
    ios: platform.ios.enableBluetooth,
  );
}