AuthorizationResponse constructor

const AuthorizationResponse({
  1. String? authorizationCode,
  2. String? codeVerifier,
  3. String? nonce,
  4. Map<String, dynamic>? authorizationAdditionalParameters,
})

Implementation

const AuthorizationResponse({
  this.authorizationCode,
  this.codeVerifier,
  this.nonce,
  this.authorizationAdditionalParameters,
});