vectorIndexes property

List<VectorIndexSpec> get vectorIndexes

Snapshot of every registered vector index. Mutating the returned list has no effect on the database.

Implementation

List<VectorIndexSpec> get vectorIndexes =>
    [for (final b in _vectorIndexes.values) b.spec];