VideoSplashScreen constructor

const VideoSplashScreen({
  1. required String videoPath,
  2. required String title,
  3. required Widget customButton,
  4. Key? key,
})

Implementation

const VideoSplashScreen({
  required this.videoPath,
  required this.title,
  required this.customButton, // 필수 인자로 변경
  Key? key,
}) : super(key: key);