prescriptions property
List<DEMedicalPlanSubheadingPrescription>
get
prescriptions
A list of all children of type "Prescription".
Implementation
List<document_wrapper.DEMedicalPlanSubheadingPrescription>
get prescriptions => document
.childrenByDocumentType("Prescription")
.map((child) =>
document_wrapper.DEMedicalPlanSubheadingPrescription(child))
.toList();