bluetoothState property

  1. @override
Future<BluetoothState> get bluetoothState
override

Implementation

@override
Future<BluetoothState> get bluetoothState async {
  final status = await _methodChannel.invokeMethod('bluetoothState');
  return BluetoothState.parse(status);
}