agents property

List<VCardAgent> get agents

A list of all children of type "Agent".

Implementation

List<document_wrapper.VCardAgent> get agents => document
    .childrenByDocumentType("Agent")
    .map((child) => document_wrapper.VCardAgent(child))
    .toList();