copyWith method
Implementation
KoiLabelImageElement copyWith({
int? x,
int? y,
Uint8List? imageBytes,
int? width,
}) {
return KoiLabelImageElement(
x: x ?? this.x,
y: y ?? this.y,
imageBytes: imageBytes ?? this.imageBytes,
width: width ?? this.width,
);
}