paddingFromLTRB method
Adds padding around the widget. EdgeInsets.only() is used to create the padding.
Implementation
Padding paddingFromLTRB(double l, double t, double r, double b) => Padding(
padding: EdgeInsets.fromLTRB(l, t, r, b),
child: this,
);