maxHeight property

void maxHeight=(double v)

Implementation

set maxHeight(double v) {
  if (_latest is ConstrainedBox) return _applyConstraints(maxHeight: v);

  _add(
    (w) => ConstrainedBox(
      constraints: BoxConstraints(maxHeight: v),
      child: w,
    ),
  );
}