isBluetoothAvailable property

  1. @override
Future<bool> get isBluetoothAvailable
override

Implementation

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