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