busyTimeURLs property

List<VCardBusyTimeURL> get busyTimeURLs

A list of all children of type "BusyTimeURL".

Implementation

List<document_wrapper.VCardBusyTimeURL> get busyTimeURLs => document
    .childrenByDocumentType("BusyTimeURL")
    .map((child) => document_wrapper.VCardBusyTimeURL(child))
    .toList();