DataSample constructor

DataSample({
  1. String? id,
  2. String? transactionId,
  3. List<Identifier> identifiers = const [],
  4. String? batchId,
  5. Set<String> healthcareElementsIds = const {},
  6. Set<String> canvasesIds = const {},
  7. int? index,
  8. Map<String, Content> content = const {},
  9. int? valueDate,
  10. int? openingDate,
  11. int? closingDate,
  12. int? created,
  13. int? modified,
  14. int? endOfLife,
  15. String? author,
  16. String? responsible,
  17. String? comment,
  18. Map<String, Map<String, String>> qualifiedLinks = const {},
  19. Set<CodingReference> codes = const {},
  20. Set<CodingReference> labels = const {},
})

Returns a new DataSample instance.

Implementation

DataSample({
  this.id,
  this.transactionId,
  this.identifiers = const [],
  this.batchId,
  this.healthcareElementsIds = const {},
  this.canvasesIds = const {},
  this.index,
  this.content = const {},
  this.valueDate,
  this.openingDate,
  this.closingDate,
  this.created,
  this.modified,
  this.endOfLife,
  this.author,
  this.responsible,
  this.comment,
  this.qualifiedLinks = const {},
  this.codes = const {},
  this.labels = const {},
});