isBluetoothEnabled method

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

Implementation

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