Filter constructor

Filter(
  1. String field,
  2. dynamic value,
  3. String operator
)

Creates a new filter with the specified field, value, and operator

Implementation

Filter(this.field, this.value, this.operator);