copyWith method

KoiPositionedQrCodeElement copyWith({
  1. int? x,
  2. int? y,
  3. String? data,
  4. int? cellSize,
})

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,
  );
}