paddingOnly method

Widget paddingOnly({
  1. double left = 0,
  2. double top = 0,
  3. double right = 0,
  4. double bottom = 0,
})

Wrap this with Padding Widget with EdgeInsets.only() attribute. By default, all properties has 0 as value: top, bottom, left and right.

Implementation

Widget paddingOnly({
  double left = 0,
  double top = 0,
  double right = 0,
  double bottom = 0,
}) =>
    Padding(
        padding: EdgeInsets.only(
            top: top, left: left, right: right, bottom: bottom),
        child: this);