copyWith method
Implementation
KoiPositionedBarcodeElement copyWith({
int? x,
int? y,
String? data,
int? height,
String? type,
}) {
return KoiPositionedBarcodeElement(
x: x ?? this.x,
y: y ?? this.y,
data: data ?? this.data,
height: height ?? this.height,
type: type ?? this.type,
);
}