copyWith method
ZeroSwitchStyleSet
copyWith({
- ZeroSwitchStyle? basic,
- ZeroSwitchStyle? android,
- ZeroSwitchStyle? iOS,
- Color? disabledColor,
Implementation
ZeroSwitchStyleSet copyWith({
ZeroSwitchStyle? basic,
ZeroSwitchStyle? android,
ZeroSwitchStyle? iOS,
Color? disabledColor,
}) {
return ZeroSwitchStyleSet(
basic: basic ?? this.basic,
android: android ?? this.android,
iOS: iOS ?? this.iOS,
disabledColor: disabledColor ?? this.disabledColor,
);
}