chatEventForumTopicCreated property

ChatEventForumTopicCreated? chatEventForumTopicCreated

A new forum topic was created

Implementation

ChatEventForumTopicCreated? get chatEventForumTopicCreated {
  if (this is ChatEventForumTopicCreated) {
    return this as ChatEventForumTopicCreated;
  }
  return null;
}