overflowed method
see OverflowBox
Implementation
OverflowBox overflowed({
Key? key,
Alignment align = Alignment.center,
double? minW,
double? maxW,
double? minH,
double? maxH,
}) =>
OverflowBox(
key: key,
alignment: align,
minWidth: minW,
maxWidth: maxW,
minHeight: minH,
maxHeight: maxH,
child: this,
);