ForumTopicCreated constructor

const ForumTopicCreated({
  1. required String name,
  2. required int color,
  3. String? iconCustomEmojiId,
})

Creates a new ForumTopicCreated object.

Implementation

const ForumTopicCreated({
  required this.name,
  required this.color,
  this.iconCustomEmojiId,
});