StoryInfo.fromJson constructor
Parse from a json
Implementation
factory StoryInfo.fromJson(Map<String, dynamic> json) => StoryInfo(
storyId: json['story_id'],
date: json['date'],
isForCloseFriends: json['is_for_close_friends'],
);