statusStream property
Stream<ScannerStatus>
get
statusStream
Stream of scanner status changes
Implementation
static Stream<ScannerStatus> get statusStream {
_statusController ??= StreamController<ScannerStatus>.broadcast();
return _statusController!.stream;
}