InternalLinkTypePublicChat constructor

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

The link is a link to a chat by its username. Call searchPublicChat with the given chat username to process the link

Implementation

const InternalLinkTypePublicChat({
  required this.chatUsername,
  this.extra,
  this.clientId,
});