copyWithWrapped method
Implementation
WebApiModulesAgentOrderItemCompleteKitOption copyWithWrapped({
Wrapped<String?>? inventoryId,
Wrapped<String?>? inventoryPackageInventoryId,
Wrapped<int?>? quantity,
}) {
return WebApiModulesAgentOrderItemCompleteKitOption(
inventoryId: (inventoryId != null ? inventoryId.value : this.inventoryId),
inventoryPackageInventoryId: (inventoryPackageInventoryId != null
? inventoryPackageInventoryId.value
: this.inventoryPackageInventoryId),
quantity: (quantity != null ? quantity.value : this.quantity),
);
}