fromJson static method
Implementation
static StoryInteractionTypeRepost? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return StoryInteractionTypeRepost(
story: Story.fromJson(tdMapFromJson(json['story'])),
);
}