fromJson static method
Implementation
static StoryInteractionTypeView? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return StoryInteractionTypeView(
chosenReactionType: ReactionType.fromJson(
tdMapFromJson(json['chosen_reaction_type']),
),
);
}