copyWith method
Implementation
LinkTokenCreateRequestTransfer copyWith(
{String? intentId, String? paymentProfileToken}) {
return LinkTokenCreateRequestTransfer(
intentId: intentId ?? this.intentId,
paymentProfileToken: paymentProfileToken ?? this.paymentProfileToken);
}