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