SplashScreen constructor

const SplashScreen({
  1. Key? key,
  2. required String image,
  3. required Color? color,
  4. double? hei,
  5. double? wd,
})

Implementation

const SplashScreen({
  Key? key,
  required this.image,
  required this.color,
  this.hei,
  this.wd,
}) : super(key: key);