copyWith method
Implementation
CircularDecorator copyWith({
Color? selectedColor,
TextStyle? textStyle,
Color? color,
Color? borderColor,
Color? textColor,
Color? selectedTextColor,
}) {
return CircularDecorator(
selectedColor: selectedColor ?? this.selectedColor,
textStyle: textStyle ?? this.textStyle,
color: color ?? this.color,
borderColor: borderColor ?? this.borderColor,
textColor: textColor ?? this.textColor,
selectedTextColor: selectedTextColor ?? this.selectedTextColor,
);
}