SplashLayout constructor

const SplashLayout({
  1. Key? key,
  2. required SplashConfig config,
  3. required SplashTheme theme,
  4. bool isLoading = false,
  5. VoidCallback? onTap,
  6. VoidCallback? onSkip,
})

Creates a SplashLayout.

Implementation

const SplashLayout({
  super.key,
  required this.config,
  required this.theme,
  this.isLoading = false,
  this.onTap,
  this.onSkip,
});