toRowList method

Future<List<CursorRow>> toRowList({
  1. int? limit,
  2. int? offset,
})

Convert an openCursor stream to a list.

Implementation

Future<List<CursorRow>> toRowList({int? limit, int? offset}) =>
    _cursorStreamToList(this,
        (cwv) => CursorRow(cwv.key, cwv.primaryKey, cloneValue(cwv.value)),
        offset: offset, limit: limit);