page_model.dart 225 B

12345678
  1. class PageResultModel<T> {
  2. int total;
  3. List<T> rows;
  4. PageResultModel({required this.total, required this.rows});
  5. PageResultModel.empty({int total = 0, List<T> rows = const []})
  6. : this(total: total, rows: rows);
  7. }