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