maxWidth method

Panel maxWidth(
  1. int value
)

Sets the maximum width of the panel.

Implementation

Panel maxWidth(int value) {
  _maxWidth = value;
  return this;
}