roles property

List<VCardRole> get roles

A list of all children of type "Role".

Implementation

List<document_wrapper.VCardRole> get roles => document
    .childrenByDocumentType("Role")
    .map((child) => document_wrapper.VCardRole(child))
    .toList();