copyWith method
Implementation
WebApiModulesWarehouseCheckInSessionSettingsResponse copyWith(
{String? dealId,
String? departmentId,
String? locationId,
String? warehouseId,
bool? hasPendingExchange,
bool? hasException,
List<WebApiModulesWarehouseCheckInCheckInOrder>? orders}) {
return WebApiModulesWarehouseCheckInSessionSettingsResponse(
dealId: dealId ?? this.dealId,
departmentId: departmentId ?? this.departmentId,
locationId: locationId ?? this.locationId,
warehouseId: warehouseId ?? this.warehouseId,
hasPendingExchange: hasPendingExchange ?? this.hasPendingExchange,
hasException: hasException ?? this.hasException,
orders: orders ?? this.orders);
}