InternalLinkTypeMessage constructor

const InternalLinkTypeMessage({
  1. required String url,
  2. dynamic extra,
  3. int? clientId,
})

The link is a link to a Telegram message or a forum topic. Call getMessageLinkInfo with the given URL to process the link

Implementation

const InternalLinkTypeMessage({
  required this.url,
  this.extra,
  this.clientId,
});