QueryCriteria constructor

QueryCriteria(
  1. String description,
  2. String field,
  3. String operator,
  4. dynamic value, {
  5. String? formatting,
  6. bool column = false,
})

Implementation

QueryCriteria(super.description, this.field, this.operator, this.value,
    {this.formatting, this.column = false}) {
  super.stringFormat = formatting ?? "$description: $value";
}