timeZones property
List<VCardTimeZone>
get
timeZones
A list of all children of type "TimeZone".
Implementation
List<document_wrapper.VCardTimeZone> get timeZones => document
.childrenByDocumentType("TimeZone")
.map((child) => document_wrapper.VCardTimeZone(child))
.toList();