CreateForumTopic constructor

const CreateForumTopic({
  1. required int chatId,
  2. required String name,
  3. required ForumTopicIcon icon,
})

Creates a topic in a forum supergroup chat; requires can_manage_topics rights in the supergroup

Implementation

const CreateForumTopic({
  required this.chatId,
  required this.name,
  required this.icon,
});