paddings method
Implementation
Padding paddings({double? left, double? top, double? right, double? bottom, double? hor, double? ver, double? all}) {
var e = EdgeInsets.fromLTRB(left ?? hor ?? all ?? 0, top ?? ver ?? all ?? 0, right ?? hor ?? all ?? 0, bottom ?? ver ?? all ?? 0);
return Padding(padding: e, child: this);
}