scanResults property

Stream<List<ScanResult>> get scanResults

a stream of scan results

  • if you re-listen to the stream it re-emits the previous results
  • the list contains all the results since the scan started
  • the returned stream is never closed.

Implementation

static Stream<List<ScanResult>> get scanResults => _scanResults.stream;