customs property

List<VCardCustom> get customs

A list of all children of type "Custom".

Implementation

List<document_wrapper.VCardCustom> get customs => document
    .childrenByDocumentType("Custom")
    .map((child) => document_wrapper.VCardCustom(child))
    .toList();