OAuthConfig constructor

OAuthConfig({
  1. String? clientId,
  2. String? clientSecretVersion,
  3. String? oauthGrantType,
  4. List<String>? scopes,
  5. String? tokenEndpoint,
})

Implementation

OAuthConfig({
  this.clientId,
  this.clientSecretVersion,
  this.oauthGrantType,
  this.scopes,
  this.tokenEndpoint,
});