checkBluetooth property

Future<bool?> checkBluetooth

Return true if the bluetooth is alreay turned on.

Return false if the bluetooth is turned off.

Implementation

static Future<bool?> get checkBluetooth async {
  bool? b = await _channel.invokeMethod('checkBluetooth');
  return b;
}