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