AddCondition constructor

const AddCondition({
  1. required String property,
  2. required String value,
  3. FilterMode mode = FilterMode.or,
})

Dispatched to add the requested property value pair to the list of conditions that are currently active.

Implementation

const AddCondition({
  required this.property,
  required this.value,
  this.mode = FilterMode.or,
});