internalLinkTypeUserToken property
The link is a link to a user by a temporary token. Call searchUserByToken with the given token to process the link
Implementation
InternalLinkTypeUserToken? get internalLinkTypeUserToken {
if (this is InternalLinkTypeUserToken) {
return this as InternalLinkTypeUserToken;
}
return null;
}