Identifier constructor

Identifier({
  1. String? id,
  2. String? assigner,
  3. String? start,
  4. String? end,
  5. String? system,
  6. CodingReference? type,
  7. String? use,
  8. String? value,
})

Returns a new Identifier instance.

Implementation

Identifier({
  this.id,
  this.assigner,
  this.start,
  this.end,
  this.system,
  this.type,
  this.use,
  this.value,
});