getSealdIdsFromConnectorsAsync method
Future<List<String> >
getSealdIdsFromConnectorsAsync(
- List<
SealdConnectorTypeValue> connectorTypeValues
Get all the info for the given connectors to look for, updates the local cache of connectors, and returns a list with the corresponding Seald IDs. Seald IDs are not de-duped and can appear for multiple connector values. If one of the connectors is not assigned to a Seald user, this will throw a SealdException with the details of the missing connector.
connectorTypeValues
- A List of SealdConnectorTypeValue instances.
Returns a list of Seald IDs of the users corresponding to these connectors.
Implementation
Future<List<String>> getSealdIdsFromConnectorsAsync(
List<SealdConnectorTypeValue> connectorTypeValues) {
return compute(getSealdIdsFromConnectors, connectorTypeValues);
}