buildIndexKey method

Object? buildIndexKey(
  1. IndexDef def,
  2. List<Object?> values
)

Build the storage key for def from a single row's values. Returns null when the index should skip this row (any indexed column is NULL — matching SQLite's default treatment of NULL in indexes).

Implementation

Object? buildIndexKey(IndexDef def, List<Object?> values) =>
    _buildIndexKey(def, values);