ReportList constructor

ReportList({
  1. required int total,
  2. required List<Report> reports,
})

Implementation

ReportList({
  required this.total,
  required this.reports,
});