SplashAnimation constructor

const SplashAnimation({
  1. required SplashAnimationType type,
  2. int durationMs = 800,
  3. Curve curve = Curves.easeInOut,
  4. List<SplashAnimation>? steps,
  5. int delayMs = 0,
})

Creates a SplashAnimation with full configuration.

Implementation

const SplashAnimation({
  required this.type,
  this.durationMs = 800,
  this.curve = Curves.easeInOut,
  this.steps,
  this.delayMs = 0,
});