GetChatInviteLinks constructor

const GetChatInviteLinks({
  1. required int chatId,
  2. required int creatorUserId,
  3. required bool isRevoked,
  4. required int offsetDate,
  5. required String offsetInviteLink,
  6. required int limit,
})

Returns invite links for a chat created by specified administrator. Requires administrator privileges and can_invite_users right in the chat to get own links and owner privileges to get other links

Implementation

const GetChatInviteLinks({
  required this.chatId,
  required this.creatorUserId,
  required this.isRevoked,
  required this.offsetDate,
  required this.offsetInviteLink,
  required this.limit,
});