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({
Key? key,
required this.padding,
Widget? child,
}) : super(key: key, child: child);