sources property

List<VCardSource> get sources

A list of all children of type "Source".

Implementation

List<document_wrapper.VCardSource> get sources => document
    .childrenByDocumentType("Source")
    .map((child) => document_wrapper.VCardSource(child))
    .toList();