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