DeleteRevokedChatInviteLink constructor

const DeleteRevokedChatInviteLink({
  1. required int chatId,
  2. required String inviteLink,
})

Deletes revoked chat invite links. Requires administrator privileges and can_invite_users right in the chat for own links and owner privileges for other links

Implementation

const DeleteRevokedChatInviteLink({
  required this.chatId,
  required this.inviteLink,
});