Signature constructor

const Signature({
  1. required List<Coding> type,
  2. String? when,
  3. @JsonKey(name: '_when') Element? whenElement,
  4. String? whoUri,
  5. @JsonKey(name: '_whoUri') Element? whoUriElement,
  6. Reference? whoReference,
  7. String? onBehalfOfUri,
  8. @JsonKey(name: '_onBehalfOfUri') Element? onBehalfOfUriElement,
  9. Reference? onBehalfOfReference,
  10. String? contentType,
  11. @JsonKey(name: '_contentType') Element? contentTypeElement,
  12. String? blob,
  13. @JsonKey(name: '_blob') Element? blobElement,
})

Implementation

const factory Signature({
  required List<Coding> type,
  String? when,
  @JsonKey(name: '_when') Element? whenElement,
  String? whoUri,
  @JsonKey(name: '_whoUri') Element? whoUriElement,
  Reference? whoReference,
  String? onBehalfOfUri,
  @JsonKey(name: '_onBehalfOfUri') Element? onBehalfOfUriElement,
  Reference? onBehalfOfReference,
  String? contentType,
  @JsonKey(name: '_contentType') Element? contentTypeElement,
  String? blob,
  @JsonKey(name: '_blob') Element? blobElement,
}) = _Signature;