cursorToKeyList function

Future<List<Object>> cursorToKeyList(
  1. Stream<Cursor> stream
)

Convert an autoAdvance openKeyCursor stream to a list (must be auto-advance)

Implementation

Future<List<Object>> cursorToKeyList(Stream<Cursor> stream) =>
    _autoCursorStreamToList(stream, (cursor) => cursor.key);