padding20 function

Widget padding20(
  1. Widget widget, {
  2. double left = 20,
  3. double top = 20,
  4. double right = 20,
  5. double bottom = 20,
})

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);
}