copyWith method

WebApiModulesAgentOrderSendContactConfirmationRequest copyWith({
  1. String? orderId,
  2. String? orderNumber,
  3. String? contactEmail,
})

Implementation

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