copyWithWrapped method

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

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