Rule constructor

Rule({
  1. List<Action>? actions,
  2. List<RuleCondition>? conditions,
  3. bool? isDefault,
  4. String? priority,
  5. String? ruleArn,
})

Implementation

Rule({
  this.actions,
  this.conditions,
  this.isDefault,
  this.priority,
  this.ruleArn,
});