InternalLinkTypeStory constructor

const InternalLinkTypeStory({
  1. required String storySenderUsername,
  2. required int storyId,
  3. dynamic extra,
  4. int? clientId,
})

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

const InternalLinkTypeStory({
  required this.storySenderUsername,
  required this.storyId,
  this.extra,
  this.clientId,
});