relateds property

List<VCardRelated> get relateds

A list of all children of type "Related".

Implementation

List<document_wrapper.VCardRelated> get relateds => document
    .childrenByDocumentType("Related")
    .map((child) => document_wrapper.VCardRelated(child))
    .toList();