copyWith method

TermosTabBarEffects copyWith({
  1. double? glowColorMixWithWhite,
  2. double? dotGridPrimaryMixWithWhite,
  3. double? dotGridPrimaryAlphaLight,
  4. double? dotGridPrimaryAlphaDark,
  5. double? glowShellBaseOpacityLight,
  6. double? glowShellBaseOpacityDark,
  7. int? dotGridExpansionMs,
  8. int? dotGridDecayMs,
  9. double? glowSpread,
  10. double? glowCore,
  11. double? glowHaloSpread,
  12. double? glowHaloCore,
  13. double? glowHaloAlpha,
  14. double? glowHaloStrokeBoost,
  15. double? glowHaloBlurSigma,
  16. double? glowHaloCornerRadius,
  17. double? dotsHeightFraction,
  18. int? scrollAnimationMs,
})

Implementation

TermosTabBarEffects copyWith({
  double? glowColorMixWithWhite,
  double? dotGridPrimaryMixWithWhite,
  double? dotGridPrimaryAlphaLight,
  double? dotGridPrimaryAlphaDark,
  double? glowShellBaseOpacityLight,
  double? glowShellBaseOpacityDark,
  int? dotGridExpansionMs,
  int? dotGridDecayMs,
  double? glowSpread,
  double? glowCore,
  double? glowHaloSpread,
  double? glowHaloCore,
  double? glowHaloAlpha,
  double? glowHaloStrokeBoost,
  double? glowHaloBlurSigma,
  double? glowHaloCornerRadius,
  double? dotsHeightFraction,
  int? scrollAnimationMs,
}) {
  return TermosTabBarEffects(
    glowColorMixWithWhite: glowColorMixWithWhite ?? this.glowColorMixWithWhite,
    dotGridPrimaryMixWithWhite:
        dotGridPrimaryMixWithWhite ?? this.dotGridPrimaryMixWithWhite,
    dotGridPrimaryAlphaLight:
        dotGridPrimaryAlphaLight ?? this.dotGridPrimaryAlphaLight,
    dotGridPrimaryAlphaDark:
        dotGridPrimaryAlphaDark ?? this.dotGridPrimaryAlphaDark,
    glowShellBaseOpacityLight:
        glowShellBaseOpacityLight ?? this.glowShellBaseOpacityLight,
    glowShellBaseOpacityDark:
        glowShellBaseOpacityDark ?? this.glowShellBaseOpacityDark,
    dotGridExpansionMs: dotGridExpansionMs ?? this.dotGridExpansionMs,
    dotGridDecayMs: dotGridDecayMs ?? this.dotGridDecayMs,
    glowSpread: glowSpread ?? this.glowSpread,
    glowCore: glowCore ?? this.glowCore,
    glowHaloSpread: glowHaloSpread ?? this.glowHaloSpread,
    glowHaloCore: glowHaloCore ?? this.glowHaloCore,
    glowHaloAlpha: glowHaloAlpha ?? this.glowHaloAlpha,
    glowHaloStrokeBoost: glowHaloStrokeBoost ?? this.glowHaloStrokeBoost,
    glowHaloBlurSigma: glowHaloBlurSigma ?? this.glowHaloBlurSigma,
    glowHaloCornerRadius: glowHaloCornerRadius ?? this.glowHaloCornerRadius,
    dotsHeightFraction: dotsHeightFraction ?? this.dotsHeightFraction,
    scrollAnimationMs: scrollAnimationMs ?? this.scrollAnimationMs,
  );
}