padding20 function
Implementation
Widget padding20(
Widget widget, {
double left = 20,
double top = 20,
double right = 20,
double bottom = 20,
}) {
return padding10(widget, left: left, top: top, right: right, bottom: bottom);
}
Widget padding20(
Widget widget, {
double left = 20,
double top = 20,
double right = 20,
double bottom = 20,
}) {
return padding10(widget, left: left, top: top, right: right, bottom: bottom);
}