w method

ContainerBuilder w(
  1. double widthValue
)

w(double width) -->gt; width: value; (自定义宽度 - 简洁版)

Implementation

ContainerBuilder w(double widthValue) {
  _width = widthValue;
  return this;
}