categories property

List<VCardCategory> get categories

A list of all children of type "Category".

Implementation

List<document_wrapper.VCardCategory> get categories => document
    .childrenByDocumentType("Category")
    .map((child) => document_wrapper.VCardCategory(child))
    .toList();