LaunchPage constructor

const LaunchPage({
  1. Key? key,
  2. required String launchBackgroundPath,
  3. required ValueChanged<BuildContext> endCallback,
  4. Duration splashTimes = const Duration(seconds: 3),
})

Implementation

const LaunchPage({
  super.key,
  required this.launchBackgroundPath,
  required this.endCallback,
  this.splashTimes = const Duration(seconds: 3),
});