copyWithWrapped method

WebApiModulesHomeControlsOrderItemSortOrderItemsRequest copyWithWrapped({
  1. Wrapped<int?>? startAtIndex,
  2. Wrapped<List<String>?>? orderItemIds,
})

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));
}