minWidth method

BoxBuilder minWidth(
  1. int value
)

Sets the minimum width of the box.

Implementation

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