SetChatDescription constructor

const SetChatDescription({
  1. required int chatId,
  2. required String description,
})

Changes information about a chat. Available for basic groups, supergroups, and channels. Requires can_change_info administrator right

Implementation

const SetChatDescription({
  required this.chatId,
  required this.description,
});