CodingReference constructor

CodingReference({
  1. String? id,
  2. String? type,
  3. String? code,
  4. String? version,
})

Returns a new CodingReference instance.

Implementation

CodingReference({
  this.id,
  this.type,
  this.code,
  this.version,
});