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