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