maxHCustom method

ContainerBuilder maxHCustom(
  1. double maxHeightValue
)

max-h-value -->gt; max-height: value; (自定义最大高度)

Implementation

ContainerBuilder maxHCustom(double maxHeightValue) {
  _maxHeight = maxHeightValue;
  return this;
}