scanResult property
List<BluetoothDevice>
get
scanResult
The list of BluetoothDevice found in a scan.
Implementation
List<BluetoothDevice> get scanResult => _scanResult.values.toList();
set
scanResult
(List<BluetoothDevice> devices)
Implementation
set scanResult(List<BluetoothDevice> devices) => _scanResult.addEntries(
devices.map((device) => MapEntry(device.bluetoothDeviceId, device)));