labels property
List<VCardLabel>
get
labels
A list of all children of type "Label".
Implementation
List<document_wrapper.VCardLabel> get labels => document
.childrenByDocumentType("Label")
.map((child) => document_wrapper.VCardLabel(child))
.toList();