Oauth2AuthCodeFlow constructor

Oauth2AuthCodeFlow({
  1. String? authCode,
  2. String? authUri,
  3. String? clientId,
  4. Secret? clientSecret,
  5. bool? enablePkce,
  6. String? pkceVerifier,
  7. String? redirectUri,
  8. List<String>? scopes,
})

Implementation

Oauth2AuthCodeFlow({
  this.authCode,
  this.authUri,
  this.clientId,
  this.clientSecret,
  this.enablePkce,
  this.pkceVerifier,
  this.redirectUri,
  this.scopes,
});