copyWith method
Implementation
KoiPositionedQrCodeElement copyWith({
int? x,
int? y,
String? data,
int? cellSize,
}) {
return KoiPositionedQrCodeElement(
x: x ?? this.x,
y: y ?? this.y,
data: data ?? this.data,
cellSize: cellSize ?? this.cellSize,
);
}