UpdateOAuthApplicationRequest constructor

UpdateOAuthApplicationRequest({
  1. String? name,
  2. List<String>? redirectUris = const [],
  3. String? callbackUrl,
  4. String? scopes = 'profile email',
  5. bool? consentScreenEnabled,
  6. bool? pkceRequired,
  7. bool? public,
})

Returns a new UpdateOAuthApplicationRequest instance.

Implementation

UpdateOAuthApplicationRequest({
  this.name,
  this.redirectUris = const [],
  this.callbackUrl,
  this.scopes = 'profile email',
  this.consentScreenEnabled,
  this.pkceRequired,
  this.public,
});