AuthorizationCodeTokenRequest constructor
const
AuthorizationCodeTokenRequest({
- required AuthorizationCodeTokenRequestGrantTypeGrantType grantType,
- required String code,
- required String redirectUri,
- SnowflakeType? clientId,
- String? clientSecret,
- String? codeVerifier,
Implementation
const AuthorizationCodeTokenRequest({
required this.grantType,
required this.code,
required this.redirectUri,
this.clientId,
this.clientSecret,
this.codeVerifier,
});