copyWith method
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,
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,
);
}