UpdateOAuthApplicationRequest constructor

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

Returns a new UpdateOAuthApplicationRequest instance.

Implementation

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