UpdateStoryListChatCount.fromJson constructor

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

Parse from a json

Implementation

factory UpdateStoryListChatCount.fromJson(Map<String, dynamic> json) =>
    UpdateStoryListChatCount(
      storyList: StoryList.fromJson(json['story_list']),
      chatCount: json['chat_count'],
      extra: json['@extra'],
      clientId: json['@client_id'],
    );