Rule constructor

Rule({
  1. DeviceAttribute? attribute,
  2. RuleOperator? operator,
  3. String? value,
})

Implementation

Rule({
  this.attribute,
  this.operator,
  this.value,
});