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