Rule constructor

Rule({
  1. RuleLinks? links,
  2. String? description,
  3. String? id,
  4. String? name,
  5. String? type,
})

Returns a new Rule instance.

Implementation

Rule({
  this.links,
  this.description,
  this.id,
  this.name,
  this.type,
});