RenderLimitedBox constructor

RenderLimitedBox({RenderBox child, double maxWidth: double.infinity, double maxHeight: double.infinity })

Creates a render box that imposes a maximum width or maximum height on its child if the child is otherwise unconstrained.

The maxWidth and maxHeight arguments not be null and must be non-negative.

Implementation

RenderLimitedBox({
  RenderBox child,
  double maxWidth = double.infinity,
  double maxHeight = double.infinity
}) : assert(maxWidth != null && maxWidth >= 0.0),
     assert(maxHeight != null && maxHeight >= 0.0),
     _maxWidth = maxWidth,
     _maxHeight = maxHeight,
     super(child);