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();