copyWith method
Implementation
WebApiModulesInventoryInventoryContainerItemSortContainerItemsRequest
copyWith({int? startAtIndex, List<String>? containerItemIds}) {
return WebApiModulesInventoryInventoryContainerItemSortContainerItemsRequest(
startAtIndex: startAtIndex ?? this.startAtIndex,
containerItemIds: containerItemIds ?? this.containerItemIds,
);
}