AuthClient.public constructor

AuthClient.public(
  1. String id, {
  2. List<AuthScope>? allowedScopes,
})

Creates an instance of a public AuthClient.

Implementation

AuthClient.public(String id, {List<AuthScope>? allowedScopes})
    : this.withRedirectURI(
        id,
        null,
        null,
        null,
        allowedScopes: allowedScopes,
      );