paddingManager function
Implementation
Widget paddingManager({required Style style, required Widget widget}) {
bool isPaddingExist = style.px != null ||
style.py != null ||
style.pb != null ||
style.pt != null ||
style.pr != null ||
style.pl != null ||
style.p != null;
if (isPaddingExist) return padding(widget, style);
return widget;
}