marginManager function
Implementation
Widget marginManager({required Style style, required Widget widget}) {
bool isPaddingExist = style.mx != null ||
style.my != null ||
style.mb != null ||
style.mt != null ||
style.mr != null ||
style.ml != null ||
style.m != null;
if (isPaddingExist) return margin(widget, style);
return widget;
}