MastodonAdminDomainBlock constructor

const MastodonAdminDomainBlock({
  1. required String id,
  2. required String domain,
  3. required String digest,
  4. required MastodonAdminDomainBlockSeverity severity,
  5. bool rejectMedia = false,
  6. bool rejectReports = false,
  7. String? privateComment,
  8. String? publicComment,
  9. bool obfuscate = false,
  10. DateTime? createdAt,
})

Implementation

const MastodonAdminDomainBlock({
  required this.id,
  required this.domain,
  required this.digest,
  required this.severity,
  this.rejectMedia = false,
  this.rejectReports = false,
  this.privateComment,
  this.publicComment,
  this.obfuscate = false,
  this.createdAt,
});