maxHMin method

ContainerBuilder maxHMin()

max-h-min -->gt; max-height: min-content;

Implementation

ContainerBuilder maxHMin() {
  _maxHeight = 0; // Flutter中通过IntrinsicHeight实现
  return this;
}