copyWith method

IntroductionOptions copyWith({
  1. IntroductionScreenMode? mode,
  2. List<IntroductionPage>? pages,
  3. bool? tapEnabled,
  4. IntroductionScreenButtonMode? buttonMode,
  5. IntroductionLayoutStyle? layoutStyle,
  6. IndicatorMode? indicatorMode,
  7. Widget indicatorBuilder(
    1. BuildContext,
    2. PageController,
    3. int,
    4. int,
    )?,
  8. bool? skippable,
  9. TextAlign? textAlign,
  10. IntroductionDisplayMode? displayMode,
  11. IntroductionControlMode? controlMode,
  12. Widget buttonBuilder(
    1. BuildContext,
    2. VoidCallback ,
    3. Widget,
    4. IntroductionButtonType,
    )?,
  13. IntroductionTranslations? introductionTranslations,
  14. IntroductionButtonTextstyles? introductionButtonTextstyles,
})

Implementation

IntroductionOptions copyWith({
  IntroductionScreenMode? mode,
  List<IntroductionPage>? pages,
  bool? tapEnabled,
  IntroductionScreenButtonMode? buttonMode,
  IntroductionLayoutStyle? layoutStyle,
  IndicatorMode? indicatorMode,
  Widget Function(
    BuildContext,
    PageController,
    int,
    int,
  )? indicatorBuilder,
  bool? skippable,
  TextAlign? textAlign,
  IntroductionDisplayMode? displayMode,
  IntroductionControlMode? controlMode,
  Widget Function(BuildContext, VoidCallback, Widget, IntroductionButtonType)?
      buttonBuilder,
  IntroductionTranslations? introductionTranslations,
  IntroductionButtonTextstyles? introductionButtonTextstyles,
}) =>
    IntroductionOptions(
      mode: mode ?? this.mode,
      pages: pages ?? this.pages,
      tapEnabled: tapEnabled ?? this.tapEnabled,
      buttonMode: buttonMode ?? this.buttonMode,
      layoutStyle: layoutStyle ?? this.layoutStyle,
      indicatorMode: indicatorMode ?? this.indicatorMode,
      indicatorBuilder: indicatorBuilder ?? this.indicatorBuilder,
      skippable: skippable ?? this.skippable,
      textAlign: textAlign ?? this.textAlign,
      displayMode: displayMode ?? this.displayMode,
      controlMode: controlMode ?? this.controlMode,
      buttonBuilder: buttonBuilder ?? this.buttonBuilder,
      introductionTranslations:
          introductionTranslations ?? this.introductionTranslations,
      introductionButtonTextstyles:
          introductionButtonTextstyles ?? this.introductionButtonTextstyles,
    );