copyWith method
Implementation
PaymentInitiationRecipientCreateResponse copyWith(
{String? recipientId, String? requestId}) {
return PaymentInitiationRecipientCreateResponse(
recipientId: recipientId ?? this.recipientId,
requestId: requestId ?? this.requestId);
}