CustomSplash constructor
CustomSplash({})
Implementation
CustomSplash(
{super.key,
required String imagePath,
Function? customFunction,
required int duration,
CustomSplashType? type,
Color backGroundColor = Colors.white,
String animationEffect = 'fade-in',
double logoSize = 200.0,
Map<dynamic, String>? outputAndHome}) {
_duration = duration;
_customFunction = customFunction;
_imagePath = imagePath;
_outputAndHome = outputAndHome;
_backGroundColor = backGroundColor;
_animationEffect = animationEffect;
_logoSize = 200.0;
}