userReports property

List<List> userReports

A List of reports made by users.

Each report consists of a list with two entries. The first entry is the report reason. The second is the number of times this reason has been reported.

Implementation

List<List<dynamic>> get userReports =>
    (data!['user_reports'] as List).cast<List<dynamic>>();