copyWith method
Implementation
TermosSegmentedEffects copyWith({
double? glowColorMixWithWhite,
double? glowBaseOpacityLight,
double? glowBaseOpacityDark,
}) {
return TermosSegmentedEffects(
glowColorMixWithWhite: glowColorMixWithWhite ?? this.glowColorMixWithWhite,
glowBaseOpacityLight: glowBaseOpacityLight ?? this.glowBaseOpacityLight,
glowBaseOpacityDark: glowBaseOpacityDark ?? this.glowBaseOpacityDark,
);
}