MedicalDevice constructor

MedicalDevice({
  1. String? id,
  2. String? rev,
  3. int? deletionDate,
  4. List<Identifier> identifiers = const [],
  5. int? created,
  6. int? modified,
  7. String? author,
  8. String? responsible,
  9. Set<CodingReference> labels = const {},
  10. Set<CodingReference> codes = const {},
  11. int? endOfLife,
  12. String? externalId,
  13. String? name,
  14. String? type,
  15. String? brand,
  16. String? model,
  17. String? serialNumber,
  18. String? parentId,
  19. List<String> picture = const [],
  20. Set<Property> properties = const {},
  21. SystemMetaDataOwner? systemMetaData,
})

Returns a new MedicalDevice instance.

Implementation

MedicalDevice({
  this.id,
  this.rev,
  this.deletionDate,
  this.identifiers = const [],
  this.created,
  this.modified,
  this.author,
  this.responsible,
  this.labels = const {},
  this.codes = const {},
  this.endOfLife,
  this.externalId,
  this.name,
  this.type,
  this.brand,
  this.model,
  this.serialNumber,
  this.parentId,
  this.picture = const [],
  this.properties = const {},
  this.systemMetaData,
});