WebACL constructor

WebACL({
  1. required WafAction defaultAction,
  2. required List<ActivatedRule> rules,
  3. required String webACLId,
  4. String? metricName,
  5. String? name,
  6. String? webACLArn,
})

Implementation

WebACL({
  required this.defaultAction,
  required this.rules,
  required this.webACLId,
  this.metricName,
  this.name,
  this.webACLArn,
});