DEMedicalPlanDocument constructor

DEMedicalPlanDocument({
  1. String? GUID,
  2. int? currentPage,
  3. int? totalNumberOfPages,
  4. String? documentVersionNumber,
  5. String? patchVersionNumber,
  6. String? languageCountryCode,
  7. DEMedicalPlanPatientInformation? patient,
  8. DEMedicalPlanDoctorInformation? doctor,
  9. List<DEMedicalPlanStandardSubheading>? subheadings,
})

Implementation

DEMedicalPlanDocument({
  this.GUID,
  this.currentPage,
  this.totalNumberOfPages,
  this.documentVersionNumber,
  this.patchVersionNumber,
  this.languageCountryCode,
  this.patient,
  this.doctor,
  List<DEMedicalPlanStandardSubheading>? subheadings
}) : subheadings = subheadings ?? const [], super(DOCUMENT_FORMAT);