getConnectedDevices method

Future<List<ConnectedBleDevice>> getConnectedDevices(
  1. List<String> serviceUUIDs
)

Returns a list of BLE device identifiers that are currently connected to the host device.

Implementation

Future<List<ConnectedBleDevice>> getConnectedDevices(List<String> serviceUUIDs) async {
  return CentralPlatformInterface.instance.getConnectedDevices(serviceUUIDs);
}