getBondedDevices method
Implementation
@override
Future<List<Map<String, dynamic>>> getBondedDevices() async {
final List list = await methodChannel.invokeMethod('getBondedDevices');
return list.cast<Map>().map((e) => Map<String, dynamic>.from(e)).toList();
}