internalLinkTypeStory property
The link is a link to a story. Call searchPublicChat with the given sender username, then call getStory with the received chat identifier and the given story identifier
Implementation
InternalLinkTypeStory? get internalLinkTypeStory {
if (this is InternalLinkTypeStory) {
return this as InternalLinkTypeStory;
}
return null;
}