OverflowPadding constructor
      const
      OverflowPadding({ 
    
- Key? key,
- required EdgeInsetsGeometry padding,
- Widget? child,
Creates a widget that insets its child.
The padding argument must not be null.
Implementation
const OverflowPadding({
  super.key,
  required this.padding,
  super.child,
});