AuthClient.withRedirectURI constructor Null safety
Creates an instance of AuthClient that uses the authorization code grant flow.
All values must be non-null. This is confidential client.
Implementation
AuthClient.withRedirectURI(
this.id,
this.hashedSecret,
this.salt,
this.redirectURI, {
List<AuthScope>? allowedScopes,
}) {
this.allowedScopes = allowedScopes;
}