UpdateStoryDeleted.fromJson constructor

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

Parse from a json

Implementation

factory UpdateStoryDeleted.fromJson(Map<String, dynamic> json) =>
    UpdateStoryDeleted(
      storySenderChatId: json['story_sender_chat_id'],
      storyId: json['story_id'],
      extra: json['@extra'],
      clientId: json['@client_id'],
    );