FirestoreIndexIndexFieldTextSpec constructor

const FirestoreIndexIndexFieldTextSpec({
  1. required List<FirestoreIndexIndexFieldTextSpecEntry> indexSpecs,
})

Implementation

const FirestoreIndexIndexFieldTextSpec({required this.indexSpecs})
  : assert(
      indexSpecs.length >= 1,
      'FirestoreIndexIndexFieldTextSpec.indexSpecs must have at least one entry '
      '(schema enforces min_items=1)',
    );