decorationManager function
Implementation
Widget decorationManager({required Style style, required Widget widget}) {
bool isDecorationExist = style.border != null ||
style.bg != null ||
style.isRounded != null ||
style.gradient != null ||
style.boxShadow != null;
if (isDecorationExist) return decoration(widget, style);
return widget;
}