InternalLinkTypeUnknownDeepLink constructor

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

The link is an unknown tg: link. Call getDeepLinkInfo to process the link

Implementation

const InternalLinkTypeUnknownDeepLink({
  required this.link,
  this.extra,
  this.clientId,
});