copyWith method
Implementation
KoiLabelEllipseElement copyWith({
int? x,
int? y,
int? width,
int? height,
int? thickness,
}) {
return KoiLabelEllipseElement(
x: x ?? this.x,
y: y ?? this.y,
width: width ?? this.width,
height: height ?? this.height,
thickness: thickness ?? this.thickness,
);
}