ImportResultDto constructor

ImportResultDto({
  1. PatientDto? patient,
  2. List<HealthElementDto> hes = const [],
  3. List<ContactDto> ctcs = const [],
  4. List<String> warnings = const [],
  5. List<String> errors = const [],
  6. List<FormDto> forms = const [],
  7. List<HealthcarePartyDto> hcps = const [],
  8. List<DocumentDto> documents = const [],
  9. Map<String, MimeAttachmentDto> attachments = const {},
})

Returns a new ImportResultDto instance.

Implementation

ImportResultDto({
  this.patient,
  this.hes = const [],
  this.ctcs = const [],
  this.warnings = const [],
  this.errors = const [],
  this.forms = const [],
  this.hcps = const [],
  this.documents = const [],
  this.attachments = const {},
});