maxHeight method
Set maximum height for widget
Equivalent to:
ConstrainedBox(
constraints: BoxConstraints(
maxHeight: maxHeight
)
)
Implementation
Niku maxHeight(double maxHeight) => Niku(ConstrainedBox(
constraints: BoxConstraints(maxHeight: maxHeight), child: this._widget));