MmOAuthApp constructor

MmOAuthApp({
  1. String? id,
  2. String? clientSecret,
  3. String? name,
  4. String? description,
  5. String? iconUrl,
  6. List<String> callbackUrls = const [],
  7. String? homepage,
  8. bool? isTrusted,
  9. int? createAt,
  10. int? updateAt,
})

Returns a new MmOAuthApp instance.

Implementation

MmOAuthApp({
  this.id,
  this.clientSecret,
  this.name,
  this.description,
  this.iconUrl,
  this.callbackUrls = const [],
  this.homepage,
  this.isTrusted,
  this.createAt,
  this.updateAt,
});