maxWidth method

BoxBuilder maxWidth(
  1. int value
)

Sets the maximum width of the box.

Implementation

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