AuthorizeConsentRequest constructor

const AuthorizeConsentRequest({
  1. required SnowflakeType clientId,
  2. required String scope,
  3. String? responseType,
  4. String? redirectUri,
  5. String? state,
  6. String? permissions,
  7. SnowflakeType? guildId,
  8. String? codeChallenge,
  9. AuthorizeConsentRequestCodeChallengeMethodCodeChallengeMethod? codeChallengeMethod,
})

Implementation

const AuthorizeConsentRequest({
  required this.clientId,
  required this.scope,
  this.responseType,
  this.redirectUri,
  this.state,
  this.permissions,
  this.guildId,
  this.codeChallenge,
  this.codeChallengeMethod,
});