SplashPage constructor
const
SplashPage({})
Implementation
const SplashPage({
super.key,
required this.title,
required this.subtitle,
required this.nextPage,
this.icon,
this.iconColor,
this.assetImage,
this.titleStyle,
this.subtitleStyle,
this.backgroundColor,
}) : assert(
icon != null || assetImage != null,
'Either icon or assetImage must be provided',
);