RowList constructor

RowList({
  1. required int total,
  2. required List<Row> rows,
})

Implementation

RowList({
  required this.total,
  required this.rows,
});