isBluetoothOn method

  1. @override
Future<bool> isBluetoothOn()
override

Implementation

@override
Future<bool> isBluetoothOn() async {
  try {
    final response = await methodChannel.invokeMethod("is_bluetooth_on");
    return response;
  } catch (e) {
    rethrow;
  }
}