RenderConstrainedOverflowBox constructor

RenderConstrainedOverflowBox({RenderBox child, double minWidth, double maxWidth, double minHeight, double maxHeight, AlignmentGeometry alignment: Alignment.center, TextDirection textDirection })

Creates a render object that lets its child overflow itself.

Implementation

RenderConstrainedOverflowBox({
  RenderBox child,
  double minWidth,
  double maxWidth,
  double minHeight,
  double maxHeight,
  AlignmentGeometry alignment = Alignment.center,
  TextDirection textDirection,
}) : _minWidth = minWidth,
     _maxWidth = maxWidth,
     _minHeight = minHeight,
     _maxHeight = maxHeight,
     super(child: child, alignment: alignment, textDirection: textDirection);