CombinedRule constructor

CombinedRule({
  1. List<Rule?>? rules,
  2. List<GroupRule?>? groupRules,
})

Implementation

CombinedRule({
  this.rules,
  this.groupRules,
}) {
  _run();
}