pOnly method

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

Gives custom padding by only left top right bottom.

Implementation

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