Rule constructor

Rule({
  1. String? ruleId,
  2. List<Action>? actions,
  3. List<Condition>? conditions,
})

Implementation

Rule({
  this.ruleId,
  this.actions,
  this.conditions,
});