Rule constructor

Rule({
  1. String? description,
  2. String? displayName,
  3. String? errorMessage,
  4. String? name,
  5. String? primaryCategory,
  6. String? remediation,
  7. String? revisionId,
  8. String? secondaryCategory,
  9. String? severity,
  10. List<String>? tags,
  11. String? uri,
})

Implementation

Rule({
  this.description,
  this.displayName,
  this.errorMessage,
  this.name,
  this.primaryCategory,
  this.remediation,
  this.revisionId,
  this.secondaryCategory,
  this.severity,
  this.tags,
  this.uri,
});