AuthorizationCodeTokenRequest constructor

const AuthorizationCodeTokenRequest({
  1. required AuthorizationCodeTokenRequestGrantTypeGrantType grantType,
  2. required String code,
  3. required String redirectUri,
  4. SnowflakeType? clientId,
  5. String? clientSecret,
  6. String? codeVerifier,
})

Implementation

const AuthorizationCodeTokenRequest({
  required this.grantType,
  required this.code,
  required this.redirectUri,
  this.clientId,
  this.clientSecret,
  this.codeVerifier,
});