copyWith method
Implementation
PaymentInitiationPaymentGetRequest copyWith(
{String? clientId, String? secret, String? paymentId}) {
return PaymentInitiationPaymentGetRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
paymentId: paymentId ?? this.paymentId);
}