copyWith method

TermosButtonEffects copyWith({
  1. double? cardBlendLight,
  2. double? cardBlendDark,
  3. double? borderHoverMix,
  4. double? borderPressedMix,
  5. double? borderHoveredMix,
  6. double? contentMutedAlpha,
})

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