RuleCondition constructor

RuleCondition({
  1. required String context,
  2. required String op,
  3. required Object value,
})

Implementation

RuleCondition({
  required this.context,
  required this.op,
  required this.value,
});