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