copyWith method
Implementation
WebApiModulesWarehouseCheckInReconcileReconcileOrder copyWith({
String? orderNumber,
String? description,
String? dueDate,
int? count,
int? stillOut,
String? vendor,
String? orderId,
String? vendorId,
int? quantity,
}) {
return WebApiModulesWarehouseCheckInReconcileReconcileOrder(
orderNumber: orderNumber ?? this.orderNumber,
description: description ?? this.description,
dueDate: dueDate ?? this.dueDate,
count: count ?? this.count,
stillOut: stillOut ?? this.stillOut,
vendor: vendor ?? this.vendor,
orderId: orderId ?? this.orderId,
vendorId: vendorId ?? this.vendorId,
quantity: quantity ?? this.quantity,
);
}