AuthorizationCodeLink constructor

AuthorizationCodeLink({
  1. String? clientId,
  2. Secret? clientSecret,
  3. bool? enablePkce,
  4. bool? omitQueryParams,
  5. List<String>? scopes,
  6. String? uri,
})

Implementation

AuthorizationCodeLink({
  this.clientId,
  this.clientSecret,
  this.enablePkce,
  this.omitQueryParams,
  this.scopes,
  this.uri,
});