copyWithWrapped method

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

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