timezone property

VTimezone? timezone

Convencience getter for getting the first VTIMEZONE child, if there is any:

Implementation

VTimezone? get timezone => children.firstWhereOrNull(
        (component) => component.componentType == VComponentType.timezone)
    as VTimezone?;