notes property

List<VCardNote> get notes

A list of all children of type "Note".

Implementation

List<document_wrapper.VCardNote> get notes => document
    .childrenByDocumentType("Note")
    .map((child) => document_wrapper.VCardNote(child))
    .toList();