ChatFolderInviteLinkInfo constructor

const ChatFolderInviteLinkInfo({
  1. required ChatFolderInfo chatFolderInfo,
  2. required List<int> missingChatIds,
  3. required List<int> addedChatIds,
  4. dynamic extra,
  5. int? clientId,
})

Contains information about an invite link to a chat folder

Implementation

const ChatFolderInviteLinkInfo({
  required this.chatFolderInfo,
  required this.missingChatIds,
  required this.addedChatIds,
  this.extra,
  this.clientId,
});