copyWith method
Implementation
KoiLabelCircleElement copyWith({
int? x,
int? y,
int? diameter,
int? thickness,
}) {
return KoiLabelCircleElement(
x: x ?? this.x,
y: y ?? this.y,
diameter: diameter ?? this.diameter,
thickness: thickness ?? this.thickness,
);
}