DbPage constructor

const DbPage({
  1. required List<Map<String, dynamic>> rows,
  2. required int total,
  3. required int page,
  4. required int limit,
})

Implementation

const DbPage({
  required this.rows,
  required this.total,
  required this.page,
  required this.limit,
});