MastodonReportCreateRequest constructor

const MastodonReportCreateRequest({
  1. required String accountId,
  2. List<String>? statusIds,
  3. String? comment,
  4. bool? forward,
  5. String? category,
  6. List<String>? ruleIds,
})

Creates a MastodonReportCreateRequest.

Implementation

const MastodonReportCreateRequest({
  required this.accountId,
  this.statusIds,
  this.comment,
  this.forward,
  this.category,
  this.ruleIds,
});