MmCreateOAuthAppRequest constructor

MmCreateOAuthAppRequest({
  1. required String name,
  2. required String description,
  3. String? iconUrl,
  4. List<String> callbackUrls = const [],
  5. required String homepage,
  6. bool? isTrusted,
})

Returns a new MmCreateOAuthAppRequest instance.

Implementation

MmCreateOAuthAppRequest({
  required this.name,
  required this.description,
  this.iconUrl,
  this.callbackUrls = const [],
  required this.homepage,
  this.isTrusted,
});