CreateOAuthApplicationRequest constructor

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

Returns a new CreateOAuthApplicationRequest instance.

Implementation

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