Gets the current state of the Bluetooth module
Stream<int> get state async* { yield await _channel.invokeMethod('state').then((s) => s); yield* _stateChannel.receiveBroadcastStream().map((s) => s); }