padOnly method
see Padding
Implementation
Padding padOnly({
double l = 0.0,
double t = 0.0,
double r = 0.0,
double b = 0.0,
Key? key,
}) =>
Padding(
key: key,
padding: EdgeInsets.only(left: l, top: t, right: r, bottom: b),
child: this,
);