decodeForumPostPopularity function

ForumPostPopularity? decodeForumPostPopularity(
  1. dynamic value
)

Implementation

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

  return ForumPostPopularity.ProtectedInvalidEnumValue;
}