todo property

VTodo? todo

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

Implementation

VTodo? get todo => children.firstWhereOrNull(
    (component) => component.componentType == VComponentType.todo) as VTodo?;