minHCustom method

ContainerBuilder minHCustom(
  1. double minHeightValue
)

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

Implementation

ContainerBuilder minHCustom(double minHeightValue) {
  _minHeight = minHeightValue;
  return this;
}