RemoveCondition constructor

const RemoveCondition({
  1. required String property,
  2. required String value,
})

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

Implementation

const RemoveCondition({
  required this.property,
  required this.value,
});