SplashTheme constructor

const SplashTheme({
  1. required Color backgroundColor,
  2. required Color loaderColor,
  3. required Color textColor,
  4. required Color retryButtonColor,
  5. required Color retryButtonTextColor,
})

Creates a SplashTheme with explicit color values.

Implementation

const SplashTheme({
  required this.backgroundColor,
  required this.loaderColor,
  required this.textColor,
  required this.retryButtonColor,
  required this.retryButtonTextColor,
});