RecommendationData constructor

RecommendationData({
  1. RecommendationLab? lab,
  2. RecommendationDrug? drug,
  3. RecommendationICD10? icd10,
  4. List<RecommendationFollowUp>? followUp,
  5. RecommendationDoctorReferral? doctorReferral,
  6. List<RecommendationPostCallAnswer>? postCallAnswer,
})

Implementation

RecommendationData({
   this.lab,
   this.drug,
   this.icd10,
   this.followUp,
   this.doctorReferral,
   this.postCallAnswer,
});