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