overflowBox method

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

Implementation

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