FlutterIntroScreen constructor

const FlutterIntroScreen({
  1. Key? key,
  2. required Widget centerWidget,
  3. required List<IntroPageData> pageData,
  4. required VoidCallback onCompletePressed,
  5. IntroMessages messages = const IntroMessages(),
  6. IntroInsets insets = const IntroInsets(),
  7. IntroDurations durations = const IntroDurations(),
  8. IntroColors colors = const IntroColors(),
  9. IntroText texts = const IntroText(),
})

Implementation

const FlutterIntroScreen({
  Key? key,
  required this.appLogo,
  required this.centerWidget,
  required this.pageData,
  required this.onCompletePressed,
  this.messages = const IntroMessages(),
  this.insets = const IntroInsets(),
  this.durations = const IntroDurations(),
  this.colors = const IntroColors(),
  this.texts = const IntroText(),
}) : super(key: key);