fromJson static method
Inherited by: InputStoryAreaTypeFoundVenue InputStoryAreaTypeLink InputStoryAreaTypeLocation InputStoryAreaTypeMessage InputStoryAreaTypePreviousVenue InputStoryAreaTypeSuggestedReaction InputStoryAreaTypeUpgradedGift InputStoryAreaTypeWeather
Implementation
static InputStoryAreaTypeLocation? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return InputStoryAreaTypeLocation(
location: Location.fromJson(tdMapFromJson(json['location'])),
address: LocationAddress.fromJson(tdMapFromJson(json['address'])),
);
}