fromJson static method
Inherited by: MessageReplyToMessage MessageReplyToStory
Implementation
static MessageReplyToStory? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return MessageReplyToStory(
storyPosterChatId: (json['story_poster_chat_id'] as int?) ?? 0,
storyId: (json['story_id'] as int?) ?? 0,
);
}