SplashView constructor

SplashView({
  1. required Widget widget,
  2. Color? color,
  3. bool? showLoading = true,
})

Implementation

SplashView({
  required this.widget,
  this.color,
  this.showLoading = true,
});