MessagesEditForumTopic constructor

const MessagesEditForumTopic({
  1. required InputPeerBase peer,
  2. required int topicId,
  3. String? title,
  4. int? iconEmojiId,
  5. bool? closed,
  6. bool? hidden,
})

Messages Edit Forum Topic constructor.

Implementation

const MessagesEditForumTopic({
  required this.peer,
  required this.topicId,
  this.title,
  this.iconEmojiId,
  this.closed,
  this.hidden,
}) : super._();