InternalLinkTypeVideoChat constructor

const InternalLinkTypeVideoChat({
  1. required String chatUsername,
  2. required String inviteHash,
  3. required bool isLiveStream,
  4. dynamic extra,
  5. int? clientId,
})

The link is a link to a video chat. Call searchPublicChat with the given chat username, and then joinGoupCall with the given invite hash to process the link

Implementation

const InternalLinkTypeVideoChat({
  required this.chatUsername,
  required this.inviteHash,
  required this.isLiveStream,
  this.extra,
  this.clientId,
});