copyWith method

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

Implementation

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