bondedDevices property
Future<List<BluetoothDevice> >
get
bondedDevices
Retrieve a list of bonded devices (Android only)
Implementation
static Future<List<BluetoothDevice>> get bondedDevices async {
ensurePlatform(System.isAndroid, "getBondedDevices");
final devices = await invoke("getBondedDevices", (p) => p.getBondedDevices());
return devices.map(_deviceForBm).toList();
}