decodeHostGuidedGamesPermissionLevel function
Implementation
HostGuidedGamesPermissionLevel? decodeHostGuidedGamesPermissionLevel (dynamic value) {
if(value == null) {
return null;
}
if(_$HostGuidedGamesPermissionLevelValueMap.containsKey(value)){
return _$HostGuidedGamesPermissionLevelValueMap[value];
}
return HostGuidedGamesPermissionLevel.ProtectedInvalidEnumValue;
}