Simple_splash constructor

const Simple_splash({
  1. Key? key,
  2. Color backgroundColor = Colors.grey,
  3. Duration duration = const Duration(seconds: 1),
  4. LinearGradient? gradient,
  5. Future<void> onFinished()?,
  6. String? text,
  7. double textSize = 25,
  8. Color textColor = Colors.white,
  9. Future<void> whileWaiting()?,
})

Implementation

const Simple_splash(
    {super.key,
    this.backgroundColor = Colors.grey,
    this.duration = const Duration(seconds: 1),
    this.logo,
    this.gradient,
    this.onFinished,
    this.text,
    this.textSize = 25,
    this.textColor = Colors.white,
    this.whileWaiting});