copyWith method

Implementation

WebApiModulesWarehouseCheckInSelectedItemsRequest copyWith({
  List<WebApiModulesWarehouseCheckInSelectedItemRequest>? items,
  String? officeLocationId,
  String? warehouseId,
}) {
  return WebApiModulesWarehouseCheckInSelectedItemsRequest(
    items: items ?? this.items,
    officeLocationId: officeLocationId ?? this.officeLocationId,
    warehouseId: warehouseId ?? this.warehouseId,
  );
}