bluetoothStateChanged method
Implementation
@override
Stream<BluetoothState> bluetoothStateChanged() {
_onBluetoothState ??= _bluetoothStateChangedChannel
.receiveBroadcastStream()
.map((dynamic event) => BluetoothState.parse(event));
return _onBluetoothState!;
}