usbDeviceEventStream property
Stream of physical USB attachment and detachment events on Android.
Implementation
@override
Stream<UsbDeviceEvent> get usbDeviceEventStream {
_usbDeviceEventStream ??= parseUsbDeviceEventStream(
usbDeviceEventChannel.receiveBroadcastStream(),
);
return _usbDeviceEventStream!;
}