decodeComponentPrivacySetting function
Implementation
ComponentPrivacySetting? decodeComponentPrivacySetting (dynamic value) {
if(value == null) {
return null;
}
if(_$ComponentPrivacySettingValueMap.containsKey(value)){
return _$ComponentPrivacySettingValueMap[value];
}
return ComponentPrivacySetting.ProtectedInvalidEnumValue;
}