copyWith method
Implementation
TermosButtonEffects copyWith({
double? cardBlendLight,
double? cardBlendDark,
double? borderHoverMix,
double? borderPressedMix,
double? borderHoveredMix,
double? contentMutedAlpha,
}) {
return TermosButtonEffects(
cardBlendLight: cardBlendLight ?? this.cardBlendLight,
cardBlendDark: cardBlendDark ?? this.cardBlendDark,
borderHoverMix: borderHoverMix ?? this.borderHoverMix,
borderPressedMix: borderPressedMix ?? this.borderPressedMix,
borderHoveredMix: borderHoveredMix ?? this.borderHoveredMix,
contentMutedAlpha: contentMutedAlpha ?? this.contentMutedAlpha,
);
}