getPairedDevices method
Implementation
@override
Future<List<BluetoothDevice>> getPairedDevices() async {
final rawDevices = await methodChannel.invokeMethod('getPairedDevices');
return BluetoothDevice.parseDevices(rawDevices.cast<String>());
}
@override
Future<List<BluetoothDevice>> getPairedDevices() async {
final rawDevices = await methodChannel.invokeMethod('getPairedDevices');
return BluetoothDevice.parseDevices(rawDevices.cast<String>());
}