copyWith method
Implementation
CaretStyle copyWith({
Color? color,
double? width,
BorderRadiusGeometry? borderRadius,
}) {
return CaretStyle(
color: color ?? this.color,
width: width ?? this.width,
borderRadius: borderRadius ?? this.borderRadius,
);
}