fromJson static method
Inherited by: StoryAreaTypeLink StoryAreaTypeLocation StoryAreaTypeMessage StoryAreaTypeSuggestedReaction StoryAreaTypeUpgradedGift StoryAreaTypeVenue StoryAreaTypeWeather
Implementation
static StoryAreaTypeVenue? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return StoryAreaTypeVenue(
venue: Venue.fromJson(tdMapFromJson(json['venue'])),
);
}