TitleScreen constructor

const TitleScreen({
  1. Key? key,
  2. required Duration animationDuration,
  3. String? titleImageName,
  4. required String credits,
})

Creates a TitleScreen widget.

If no titleImageName is provided, no image will be displayed.

Implementation

const TitleScreen({
  Key? key,
  required this.animationDuration,
  this.titleImageName,
  required this.credits,
}) : super(key: key);