list method

Future<List<T>> list({
  1. int limit = 1000000,
  2. int offset = 0,
})

Returns a list of results, optionally limited by: offset: starts returning results from the specified offset and skips all records before. SQL: OFFSET

Implementation

Future<List<T>> list({int limit = 1000000, int offset = 0}) async =>
    stream(limit: limit, offset: offset).toList();