RenderConstrainedOverflowBox constructor Null safety
- {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({
super.child,
double? minWidth,
double? maxWidth,
double? minHeight,
double? maxHeight,
super.alignment,
super.textDirection,
}) : _minWidth = minWidth,
_maxWidth = maxWidth,
_minHeight = minHeight,
_maxHeight = maxHeight;