loadingconfig static method
Implementation
static void loadingconfig({
Widget? indicator,
Color? progressColor,
Color? backgroundColor,
Color? indicatorColor,
Color? textColor,
Widget? success,
Widget? error,
Widget? info,
}) =>
LoadingStuff.configLoad(
indicator: indicator,
progressColor: progressColor,
backgroundColor: backgroundColor,
indicatorColor: indicatorColor,
textColor: textColor,
success: success,
error: error,
info: info,
);