CreateChatFolderInviteLink constructor

const CreateChatFolderInviteLink({
  1. required int chatFolderId,
  2. required String name,
  3. required List<int> chatIds,
})

Creates a new invite link for a chat folder. A link can be created for a chat folder if it has only pinned and included chats

Implementation

const CreateChatFolderInviteLink({
  required this.chatFolderId,
  required this.name,
  required this.chatIds,
});