overflowing method

Widget overflowing({
  1. Key? key,
  2. AlignmentGeometry alignment = Alignment.center,
  3. double? minWidth,
  4. double? maxWidth,
  5. double? minHeight,
  6. double? maxHeight,
})

A widget that imposes different constraints on its child than it gets from its parent, possibly allowing the child to overflow the parent.

Implementation

Widget overflowing({
  Key? key,
  AlignmentGeometry alignment = Alignment.center,
  double? minWidth,
  double? maxWidth,
  double? minHeight,
  double? maxHeight,
}) {
  return OverflowBox(
    key: key,
    alignment: alignment,
    minWidth: minWidth,
    maxWidth: maxWidth,
    minHeight: minHeight,
    maxHeight: maxHeight,
    child: this,
  );
}