titles property

List<VCardTitle> get titles

A list of all children of type "Title".

Implementation

List<document_wrapper.VCardTitle> get titles => document
    .childrenByDocumentType("Title")
    .map((child) => document_wrapper.VCardTitle(child))
    .toList();