RequiredTable constructor

RequiredTable({
  1. required String name,
  2. required Map<String, DataType> schema,
  3. List<String>? namespace,
  4. List<String>? scalarIndexes,
  5. List<String>? fullTextSearchIndexes,
  6. List<String>? vectorIndexes,
})

Implementation

RequiredTable({
  required super.name,
  required this.schema,
  this.namespace,
  this.scalarIndexes,
  this.fullTextSearchIndexes,
  this.vectorIndexes,
});