LoadingConfig constructor
LoadingConfig({})
Implementation
LoadingConfig(
{this.loadingIconColor = Colors.white,
this.backgroundColor = Colors.transparent,
this.loadingViewBackgroundColor = Colors.black54,
this.loadingHeight=100,
this.loadingWidth=100,
Widget? loadingView}) {
this.loadingView = loadingView ?? SpinKitCircle(color: loadingIconColor);
}