scanResultStream property

Stream<ScanResult> get scanResultStream

Stream of scan results

Implementation

static Stream<ScanResult> get scanResultStream {
  _scanResultController ??= StreamController<ScanResult>.broadcast();
  return _scanResultController!.stream;
}