copyWith method
Implementation
WebApiModulesAgentOrderCopyOrderItemsRequest copyWith(
{String? orderId, List<String>? orderItemIds}) {
return WebApiModulesAgentOrderCopyOrderItemsRequest(
orderId: orderId ?? this.orderId,
orderItemIds: orderItemIds ?? this.orderItemIds);
}