MastodonReport constructor

const MastodonReport({
  1. required String id,
  2. required bool actionTaken,
  3. DateTime? actionTakenAt,
  4. required String category,
  5. required String comment,
  6. required bool forwarded,
  7. DateTime? createdAt,
  8. List<String>? statusIds,
  9. List<String>? ruleIds,
  10. MastodonAccount? targetAccount,
})

Implementation

const MastodonReport({
  required this.id,
  required this.actionTaken,
  this.actionTakenAt,
  required this.category,
  required this.comment,
  required this.forwarded,
  this.createdAt,
  this.statusIds,
  this.ruleIds,
  this.targetAccount,
});