getDiscoveredDevices method

  1. @override
Future<List<BluetoothDeviceModel>?> getDiscoveredDevices()
override

Implementation

@override
Future<List<BluetoothDeviceModel>?> getDiscoveredDevices() async {
  final res = await methodChannel
      .invokeMethod<List<BluetoothDeviceModel>?>('getDiscoveredDevices');
  return res;
}