maxH method

ContainerBuilder maxH(
  1. double maxHeightValue
)

max-h(double maxHeight) -->gt; max-height: value; (自定义最大高度 - 简洁版)

Implementation

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