VectorSchema constructor

const VectorSchema(
  1. String name,
  2. DataType dataType,
  3. int dimension, {
  4. IndexParam? indexParam = const HnswIndexParam(),
  5. bool nullable = false,
})

Implementation

const VectorSchema(
  super.name,
  super.dataType,
  this.dimension, {
  super.indexParam = const HnswIndexParam(),
  super.nullable = false,
});