xmls property

List<VCardXML> get xmls

A list of all children of type "XML".

Implementation

List<document_wrapper.VCardXML> get xmls => document
    .childrenByDocumentType("XML")
    .map((child) => document_wrapper.VCardXML(child))
    .toList();