prescriptions property

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();