copyWith method
Implementation
KoiLabelDiagonalElement copyWith({
int? x,
int? y,
int? xEnd,
int? yEnd,
int? thickness,
}) {
return KoiLabelDiagonalElement(
x: x ?? this.x,
y: y ?? this.y,
xEnd: xEnd ?? this.xEnd,
yEnd: yEnd ?? this.yEnd,
thickness: thickness ?? this.thickness,
);
}