copyWith method
Implementation
BarcodeCornerPoint copyWith({
double? x,
double? y,
}) =>
BarcodeCornerPoint(
x: x ?? this.x,
y: y ?? this.y,
);
BarcodeCornerPoint copyWith({
double? x,
double? y,
}) =>
BarcodeCornerPoint(
x: x ?? this.x,
y: y ?? this.y,
);