maxWCustom method

ContainerBuilder maxWCustom(
  1. double maxWidthValue
)

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

Implementation

ContainerBuilder maxWCustom(double maxWidthValue) {
  _maxWidth = maxWidthValue;
  return this;
}