cursorToPrimaryKeyList function

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

Convert an autoAdvance openKeyCursor stream to a list of key, must be auto-advance)

Implementation

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