getBondedDevices method

  1. @override
Future<List?> getBondedDevices()
override

Implementation

@override
Future<List<dynamic>?> getBondedDevices() async {
  final devices = await methodChannel.invokeMethod<List<dynamic>?>('getBondedDevices');
  return devices;
}