copyWith method
Implementation
WebApiModulesWarehouseCheckOutDecreaseOrderQuantityRequest copyWith(
{String? orderId,
String? orderItemId,
String? inventoryId,
String? warehouseId,
int? quantity,
bool? isInternal,
String? internalPurchaseOrderId,
String? externalOrderId}) {
return WebApiModulesWarehouseCheckOutDecreaseOrderQuantityRequest(
orderId: orderId ?? this.orderId,
orderItemId: orderItemId ?? this.orderItemId,
inventoryId: inventoryId ?? this.inventoryId,
warehouseId: warehouseId ?? this.warehouseId,
quantity: quantity ?? this.quantity,
isInternal: isInternal ?? this.isInternal,
internalPurchaseOrderId:
internalPurchaseOrderId ?? this.internalPurchaseOrderId,
externalOrderId: externalOrderId ?? this.externalOrderId);
}