revokeChatInviteLink method

Future<ChatInviteLink> revokeChatInviteLink(
  1. ChatID chatId,
  2. String inviteLink
)
inherited

Use this method to revoke an invite link created by the bot.

If the primary link is revoked, a new link is automatically generated.

The bot must be an administrator in the chat for this to work and must have the appropriate admin rights.

Returns the revoked invite link as ChatInviteLink object.

Implementation

Future<ChatInviteLink> revokeChatInviteLink(
  ChatID chatId,
  String inviteLink,
) {
  return _client.apiCall(_token, 'revokeChatInviteLink', {
    'chat_id': chatId,
    'invite_link': inviteLink,
  });
}