copyWith method

TermosSegmentedEffects copyWith({
  1. double? glowColorMixWithWhite,
  2. double? glowBaseOpacityLight,
  3. double? glowBaseOpacityDark,
})

Implementation

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