Schema constructor

Schema(
  1. String name,
  2. Set<Field> fields, {
  3. Field? defaultSortingField,
  4. int? documentCount,
  5. bool? enableNestedFields,
})

Implementation

Schema(
  this.name,
  super.fields, {
  this.defaultSortingField,
  this.documentCount,
  this.enableNestedFields,
});