paddingLTRB method
Implementation
Padding paddingLTRB(
double left,
double top,
double right,
double bottom, {
Key? key,
}) =>
Padding(
key: key,
padding: EdgeInsets.fromLTRB(left, top, right, bottom),
child: this,
);