list abstract method

Future<List<Map<String, Object?>>> list(
  1. String table, {
  2. required int limit,
  3. required int offset,
  4. String orderBy = 'id',
  5. bool desc = true,
})

Lista registros paginados.

Implementation

Future<List<Map<String, Object?>>> list(
  String table, {
  required int limit,
  required int offset,
  String orderBy = 'id',
  bool desc = true,
});