RenderSizedOverflowBox constructor
- RenderBox? child,
- required Size requestedSize,
- AlignmentGeometry alignment = Alignment.center,
- TextDirection? textDirection,
Creates a render box of a given size that lets its child overflow.
The textDirection
argument must not be null if the alignment
is
direction-sensitive.
Implementation
RenderSizedOverflowBox({
super.child,
required Size requestedSize,
super.alignment,
super.textDirection,
}) : _requestedSize = requestedSize;