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