AddChatMember constructor

const AddChatMember({
  1. required int chatId,
  2. required int userId,
  3. required int forwardLimit,
})

Adds a new member to a chat. Members can't be added to private or secret chats

Implementation

const AddChatMember({
  required this.chatId,
  required this.userId,
  required this.forwardLimit,
});