customPadding method

Widget customPadding({
  1. Key? key,
  2. double left = 0.0,
  3. double top = 0.0,
  4. double right = 0.0,
  5. double bottom = 0.0,
})

Adds custom padding to the widget for each side.

left, top, right, and bottom specify the padding for their respective sides. key is an optional identifier for the padding widget.

Implementation

Widget customPadding({
  Key? key,
  double left = 0.0,
  double top = 0.0,
  double right = 0.0,
  double bottom = 0.0,
}) {
  return Padding(
    padding: EdgeInsets.only(
      top: top,
      left: left,
      right: right,
      bottom: bottom,
    ),
    key: key,
    child: this,
  );
}