DeepLinkInfo constructor

const DeepLinkInfo({
  1. required FormattedText text,
  2. required bool needUpdateApplication,
  3. dynamic extra,
  4. int? clientId,
})

Contains information about a tg: deep link

Implementation

const DeepLinkInfo({
  required this.text,
  required this.needUpdateApplication,
  this.extra,
  this.clientId,
});