minWCustom method

ContainerBuilder minWCustom(
  1. double minWidthValue
)

min-w-value -->gt; min-width: value; (自定义最小宽度)

Implementation

ContainerBuilder minWCustom(double minWidthValue) {
  _minWidth = minWidthValue;
  return this;
}