copyWith method
Implementation
WebApiModulesInventoryInventoryInventoryWarehouseSpecificPackageRequest
copyWith(
{String? inventoryId,
String? warehouseId,
bool? isWarehouseSpecific}) {
return WebApiModulesInventoryInventoryInventoryWarehouseSpecificPackageRequest(
inventoryId: inventoryId ?? this.inventoryId,
warehouseId: warehouseId ?? this.warehouseId,
isWarehouseSpecific: isWarehouseSpecific ?? this.isWarehouseSpecific);
}