scanStream property
Stream of BLE scan results as decoded maps.
Each event contains device information:
address: MAC address of the devicename: Device name (may be null)rssi: Signal strength indicatorhasIBeacon: Whether device supports iBeaconhasEddystone: Whether device supports EddystonehasAltBeacon: Whether device supports AltBeacon
Implementation
static Stream<Map<String, dynamic>> get scanStream {
return _scanEvents.receiveBroadcastStream().map(
(event) => Map<String, dynamic>.from(event as Map),
);
}