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 {
  throw UnimplementedError(
    'getConnectedDevices() has not been implemented.',
  );
}