subheadings property

List<DEMedicalPlanSubheading> get subheadings

A list of all children of type "Subheading".

Implementation

List<document_wrapper.DEMedicalPlanSubheading> get subheadings => document
    .childrenByDocumentType("Subheading")
    .map((child) => document_wrapper.DEMedicalPlanSubheading(child))
    .toList();