fromJson static method
Inherited by: StoryContentTypeLive StoryContentTypePhoto StoryContentTypeUnsupported StoryContentTypeVideo
Implementation
static StoryContentTypePhoto? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return const StoryContentTypePhoto();
}