copyWith method
Implementation
WebApiModulesUtilitiesInventoryTransferUtilityTransferInventoryRequest
copyWith({
String? fromWarehouseId,
String? toWarehouseId,
String? itemId,
String? locationId,
String? departmentId,
String? transferTypeId,
}) {
return WebApiModulesUtilitiesInventoryTransferUtilityTransferInventoryRequest(
fromWarehouseId: fromWarehouseId ?? this.fromWarehouseId,
toWarehouseId: toWarehouseId ?? this.toWarehouseId,
itemId: itemId ?? this.itemId,
locationId: locationId ?? this.locationId,
departmentId: departmentId ?? this.departmentId,
transferTypeId: transferTypeId ?? this.transferTypeId,
);
}