Exclusion constructor

Exclusion({
  1. required String arn,
  2. required String description,
  3. required String recommendation,
  4. required List<Scope> scopes,
  5. required String title,
  6. List<Attribute>? attributes,
})

Implementation

Exclusion({
  required this.arn,
  required this.description,
  required this.recommendation,
  required this.scopes,
  required this.title,
  this.attributes,
});