copyWithWrapped method
Implementation
WebApiModulesHomeControlsOrderItemSortOrderItemsRequest copyWithWrapped(
{Wrapped<int?>? startAtIndex, Wrapped<List<String>?>? orderItemIds}) {
return WebApiModulesHomeControlsOrderItemSortOrderItemsRequest(
startAtIndex:
(startAtIndex != null ? startAtIndex.value : this.startAtIndex),
orderItemIds:
(orderItemIds != null ? orderItemIds.value : this.orderItemIds));
}