currentStatus property

Stream<USBStatus> currentStatus

Gets the current state of the Bluetooth module

Implementation

Stream<USBStatus> get currentStatus async* {
  if (Platform.isAndroid) {
    yield* _statusStream.cast<USBStatus>();
  }
}