removeConnectorAsync method

Future<SealdConnector> removeConnectorAsync(
  1. String connectorId
)

Remove a connector belonging to the current account.

connectorId - The ID of the connector to remove. Returns the removed SealdConnector instance.

Implementation

Future<SealdConnector> removeConnectorAsync(String connectorId) {
  return compute(removeConnector, connectorId);
}