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