StartOAuthResponse constructor

StartOAuthResponse({
  1. String? authUri,
  2. String? clientId,
  3. String? codeChallenge,
  4. String? codeChallengeMethod,
  5. List<String>? scopes,
  6. String? systemProviderId,
  7. String? ticket,
})

Implementation

StartOAuthResponse({
  this.authUri,
  this.clientId,
  this.codeChallenge,
  this.codeChallengeMethod,
  this.scopes,
  this.systemProviderId,
  this.ticket,
});