impps property

List<VCardIMPP> get impps

A list of all children of type "IMPP".

Implementation

List<document_wrapper.VCardIMPP> get impps => document
    .childrenByDocumentType("IMPP")
    .map((child) => document_wrapper.VCardIMPP(child))
    .toList();