visible property

bool visible

visible returns true if this column is currently visible.

Implementation

bool get visible =>
    (!childrenExpanded || !hideWhenExpanded) &&
    (parent == null || parent?.childrenExpanded == true);