isBluetoothEnabled method

Future<bool> isBluetoothEnabled()

Checks if Bluetooth is enabled

Implementation

Future<bool> isBluetoothEnabled() async {
  return await _channel.invokeMethod('isBluetoothEnabled');
}