fromJson$Enum$StoriesContentTypeEnum function
Implementation
Enum$StoriesContentTypeEnum fromJson$Enum$StoriesContentTypeEnum(String value) {
switch (value) {
case r'GIF':
return Enum$StoriesContentTypeEnum.GIF;
case r'TEXT':
return Enum$StoriesContentTypeEnum.TEXT;
case r'STICKER':
return Enum$StoriesContentTypeEnum.STICKER;
case r'EMOJI':
return Enum$StoriesContentTypeEnum.EMOJI;
default:
return Enum$StoriesContentTypeEnum.$unknown;
}
}