TextStartWithQuery<T> constructor

TextStartWithQuery<T>(
  1. String _field,
  2. String _containText
)

To learn more on how to use this in an application, look at FirebaseRepository.query.

Use to query documents where the text in the given field starts with the given containText.

Implementation

TextStartWithQuery(this._field, this._containText)
    : assert(_field.isNotEmpty);