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