minWidth method

Panel minWidth(
  1. int value
)

Sets the minimum width of the panel.

Implementation

Panel minWidth(int value) {
  _minWidth = value;
  return this;
}