TransferChatOwnership constructor

const TransferChatOwnership({
  1. required int chatId,
  2. required int userId,
  3. required String password,
})

Changes the owner of a chat. The current user must be a current owner of the chat. Use the method canTransferOwnership to check whether the ownership can be transferred from the current session. Available only for supergroups and channel chats

Implementation

const TransferChatOwnership({
  required this.chatId,
  required this.userId,
  required this.password,
});