SplashModel constructor

SplashModel({
  1. double? heightStartedScreen,
  2. double? marginTopStartedScreen,
  3. Color? colorButton,
  4. Color? backgroundColor,
  5. required Duration duration,
  6. required Widget child,
})

Implementation

SplashModel(
    {this.heightStartedScreen,
    this.marginTopStartedScreen,
    this.colorButton,
    this.backgroundColor,
    required this.duration,
    required this.child});