toValueList method
Convert an openKeyCursor stream to a list (must be auto-advance)
Implementation
Future<List<Object>> toValueList({int? limit, int? offset}) =>
_cursorStreamToList(
this,
(cursor) => cursor.value,
offset: offset,
limit: limit,
);