minW method

ContainerBuilder minW(
  1. double minWidthValue
)

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

Implementation

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