copyWith method
Implementation
LinkTokenCreateRequestPaymentInitiation copyWith(
{String? paymentId, String? consentId}) {
return LinkTokenCreateRequestPaymentInitiation(
paymentId: paymentId ?? this.paymentId,
consentId: consentId ?? this.consentId);
}