removeClient abstract method

FutureOr removeClient(
  1. AuthServer server,
  2. String clientID
)

Removes an AuthClient for a client ID.

This method must delete the AuthClient for clientID. Subsequent requests to this instance for getClient must return null after this method completes. If there is no matching clientID, this method may choose whether to throw an exception or fail silently.

server is the AuthServer requesting the AuthClient.

Implementation

FutureOr removeClient(AuthServer server, String clientID);