Restriction constructor

const Restriction({
  1. String? relationship,
  2. String? type,
  3. String? value,
})

Implementation

const Restriction({
  this.relationship,
  this.type,
  this.value,
});