GetChatInviteLink constructor

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

Returns information about an invite link. Requires administrator privileges and can_invite_users right in the chat to get own links and owner privileges to get other links

Implementation

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