LimitedBox constructor
LimitedBox({})
Implementation
LimitedBox({
this.maxWidth = double.infinity,
this.maxHeight = double.infinity,
Widget? child,
}) : assert(maxWidth >= 0.0),
assert(maxHeight >= 0.0),
super(child: child);