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