Revokes a AuthClient record.
Removes cached occurrences of AuthClient for clientID.
Asks storage to remove an AuthClient by its ID via AuthStorage.revokeClientWithID.
Source
Future revokeClientID(String clientID) async {
if (clientID == null) {
throw new AuthServerException(AuthRequestError.invalidClient, null);
}
return storage.revokeClientWithID(this, clientID);
}