checkBluetooth method

Future<bool> checkBluetooth()

Checks the Bluetooth status and returns true if Bluetooth is turned on

Implementation

Future<bool> checkBluetooth() async {
  bool result = await _channel.invokeMethod('checkBt');
  return result;
}