isBluetoothEnabled property

  1. @override
Future<bool> get isBluetoothEnabled
override

Implementation

@override
Future<bool> get isBluetoothEnabled async {
  final result = await methodChannel.invokeMethod<bool>('isBluetoothEnabled');
  return result ?? false;
}