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