copyWith method

Implementation

PaymentInitiationPaymentCreateResponse copyWith(
    {String? paymentId,
    enums.PaymentInitiationPaymentCreateStatus? status,
    String? requestId}) {
  return PaymentInitiationPaymentCreateResponse(
      paymentId: paymentId ?? this.paymentId,
      status: status ?? this.status,
      requestId: requestId ?? this.requestId);
}