paddingOnly method

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

Implementation

Padding paddingOnly({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,
    );