getConnectorsFromSealdIdAsync method

Future<List<SealdConnector>> getConnectorsFromSealdIdAsync(
  1. String sealdId
)

List all connectors known locally for a given Seald ID.

sealdId - The Seald ID for which to list connectors. Returns a SealdConnectorsArray instance.

Implementation

Future<List<SealdConnector>> getConnectorsFromSealdIdAsync(String sealdId) {
  return compute(getConnectorsFromSealdId, sealdId);
}