ChatEventForumTopicDeleted.fromJson constructor

ChatEventForumTopicDeleted.fromJson(
  1. Map<String, dynamic> json
)

Parse from a json

Implementation

factory ChatEventForumTopicDeleted.fromJson(Map<String, dynamic> json) =>
    ChatEventForumTopicDeleted(
      topicInfo: ForumTopicInfo.fromJson(json['topic_info']),
    );