onData property
Stream<ScanDataCollection>
get
onData
Decoded scan results.
Implementation
Stream<ScanDataCollection> get onData => _events
.where((e) => e is ScanResultEvent)
.cast<ScanResultEvent>()
.map((e) => scanDataCollectionFromMsg(e.data));