decodeForumPostPopularity function
Implementation
ForumPostPopularity? decodeForumPostPopularity (dynamic value) {
if(value == null) {
return null;
}
if(_$ForumPostPopularityValueMap.containsKey(value)){
return _$ForumPostPopularityValueMap[value];
}
return ForumPostPopularity.ProtectedInvalidEnumValue;
}