calendarURIs property

List<VCardCalendarURI> get calendarURIs

A list of all children of type "CalendarURI".

Implementation

List<document_wrapper.VCardCalendarURI> get calendarURIs => document
    .childrenByDocumentType("CalendarURI")
    .map((child) => document_wrapper.VCardCalendarURI(child))
    .toList();