getClient method Null safety
- String? clientID
 
Returns a AuthClient record for its clientID.
Returns null if none exists.
Implementation
Future<AuthClient?> getClient(String? clientID) async {
  return delegate.getClient(this, clientID);
}
Returns a AuthClient record for its clientID.
Returns null if none exists.
Future<AuthClient?> getClient(String? clientID) async {
  return delegate.getClient(this, clientID);
}