copyWith method
Implementation
WebApiModulesInventoryInventoryCopyInventoryRequest copyWith(
{String? inventoryId, String? newICode, String? newDescription}) {
return WebApiModulesInventoryInventoryCopyInventoryRequest(
inventoryId: inventoryId ?? this.inventoryId,
newICode: newICode ?? this.newICode,
newDescription: newDescription ?? this.newDescription);
}