decodeCommunityContentSortMode function
Implementation
CommunityContentSortMode? decodeCommunityContentSortMode (dynamic value) {
if(value == null) {
return null;
}
if(_$CommunityContentSortModeValueMap.containsKey(value)){
return _$CommunityContentSortModeValueMap[value];
}
return CommunityContentSortMode.ProtectedInvalidEnumValue;
}