addBluetoothDevicesFromScanResults method
Implementation
void addBluetoothDevicesFromScanResults(List<ScanResult> results) {
for (var scanResult in results) {
addBluetoothDevice(BluetoothDevice.fromScanResult(scanResult));
}
}
void addBluetoothDevicesFromScanResults(List<ScanResult> results) {
for (var scanResult in results) {
addBluetoothDevice(BluetoothDevice.fromScanResult(scanResult));
}
}