toRowList method
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);