copyWith method
Implementation
WebApiModulesHomeControlsOrderItemInsertLineItemRequest copyWith(
{String? orderId, String? belowOrderItemId, String? primaryItemId}) {
return WebApiModulesHomeControlsOrderItemInsertLineItemRequest(
orderId: orderId ?? this.orderId,
belowOrderItemId: belowOrderItemId ?? this.belowOrderItemId,
primaryItemId: primaryItemId ?? this.primaryItemId);
}