buildIndexKey method
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);