Future<AuthClient> clientForID(String clientID)

Returns a AuthClient record for its clientID.

A server keeps a cache of known AuthClients. If a client does not exist in the cache, it will ask its storage via AuthStorage.fetchClientByID.

Source

Future<AuthClient> clientForID(String clientID) async {
  return storage.fetchClientByID(this, clientID);
}