Integrity constructor

Integrity({
  1. String? type,
  2. String? value,
})

Constructor for creating an Integrity object.

The constructor initializes an Integrity object with optional named parameters:

  • type: The type attribute value of the integrity.
  • value: The value of the integrity.

Implementation

Integrity({
  this.type,
  this.value,
});