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