pOnly method
Applies padding only to the specified sides.
top
, bottom
, left
, right
: Padding values for respective sides.
Implementation
Padding pOnly({
double top = 0,
double bottom = 0,
double left = 0,
double right = 0,
}) =>
_pad(top: top, bottom: bottom, left: left, right: right);