copyWith method
Implementation
WebApiModulesAgentOrderSendContactConfirmationRequest copyWith(
{String? orderId, String? orderNumber, String? contactEmail}) {
return WebApiModulesAgentOrderSendContactConfirmationRequest(
orderId: orderId ?? this.orderId,
orderNumber: orderNumber ?? this.orderNumber,
contactEmail: contactEmail ?? this.contactEmail);
}