width method

Style width(
  1. int value
)

Sets the fixed width of the styled content.

Implementation

Style width(int value) {
  _width = value;
  _setFlag(_PropBits.width);
  return this;
}