copyWith method
If the caller passes in a value for a parameter, use that value, otherwise use the value from this object.
A new instance of ZeroRatingStyle with the same properties as the original instance, except for the properties that are explicitly overridden.
Implementation
ZeroRatingStyle copyWith({
Color? activeColor,
Color? inactiveColor,
double? spacing,
}) {
return ZeroRatingStyle(
activeColor: activeColor ?? this.activeColor,
inactiveColor: inactiveColor ?? this.inactiveColor,
spacing: spacing ?? this.spacing,
);
}