modReports property

List<List<String>> modReports

A List of reports made by moderators.

Each report consists of a list with two entries. The first entry is the name of the moderator who submitted the report. The second is the report reason.

Implementation

List<List<String>> get modReports {
  final reports = data!['mod_reports'] as List;
  return reports.map<List<String>>((e) => e.cast<String>()).toList();
}