page abstract method

Future<List<Map<String, dynamic>>> page(
  1. String table, {
  2. required int limit,
  3. required int skip,
  4. OrderBy? orderBy,
})

Return list of paginated data.

Implementation

Future<List<Map<String, dynamic>>> page(
  String table, {
  required int limit,
  required int skip,
  OrderBy? orderBy,
});