event property

VEvent? event

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

Implementation

VEvent? get event => children.firstWhereOrNull(
        (component) => component.componentType == VComponentType.event)
    as VEvent?;