withMinHeight method
Set the min height of this widget to minHeight
by wrapping it inside a ConstrainedBox
Implementation
Widget withMinHeight(double minHeight) {
return ConstrainedBox(
constraints: BoxConstraints(minHeight: minHeight), child: this);
}