SplashThemeData constructor

const SplashThemeData({
  1. required List<Color> pageGradient,
  2. required Color atmosphereGlow,
  3. required Color surface,
  4. required Color surfaceAlt,
  5. required Color primary,
  6. required Color primarySoft,
  7. required Color outline,
  8. required Color shadowStrong,
  9. required Color shadowSoft,
  10. required Color textPrimary,
  11. required Color textMuted,
  12. required Color highlight,
})

Implementation

const SplashThemeData({
  required this.pageGradient,
  required this.atmosphereGlow,
  required this.surface,
  required this.surfaceAlt,
  required this.primary,
  required this.primarySoft,
  required this.outline,
  required this.shadowStrong,
  required this.shadowSoft,
  required this.textPrimary,
  required this.textMuted,
  required this.highlight,
});