width method

BoxBuilder width(
  1. int value
)

Sets the fixed width of the box.

Implementation

BoxBuilder width(int value) {
  _width = value;
  return this;
}