Intro constructor

const Intro({
  1. List<String>? sliderImages,
  2. required List<String> header,
  3. List<String>? subtitle,
  4. TextStyle? headerStyle,
  5. bool? sliderColorForHeaderColor = true,
  6. TextStyle? subtitleStyle,
  7. required List<Color> colors,
  8. required int count,
  9. Widget? actions,
  10. Key? key,
})

Implementation

const Intro(
    {this.sliderImages,
    required this.header,
    this.subtitle,
    this.headerStyle,
    this.sliderColorForHeaderColor = true,
    this.subtitleStyle,
    required this.colors,
    required this.count,
    this.actions,
    super.key});