journal property

VJournal? journal

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

Implementation

VJournal? get journal => children.firstWhereOrNull(
        (component) => component.componentType == VComponentType.journal)
    as VJournal?;