OverflowBox constructor
OverflowBox({})
Creates a widget that lets its child overflow itself.
Implementation
OverflowBox({
this.alignment = Alignment.center,
this.minWidth,
this.maxWidth,
this.minHeight,
this.maxHeight,
Widget? child,
}) : super(child: child);