myMinWidth property
double
get
myMinWidth
walks up the model tree looking for the first system non-null minWidth value
Implementation
double get myMinWidth {
if (system.minWidth != null) return system.minWidth!;
if (parent is ViewableWidgetMixin) {
return (parent as ViewableWidgetMixin).myMinWidth;
}
return 0;
}