addBluetoothDevicesFromScanResults method

void addBluetoothDevicesFromScanResults(
  1. List<ScanResult> results
)

Implementation

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