decodeContentPropertyDataTypeEnum function

ContentPropertyDataTypeEnum? decodeContentPropertyDataTypeEnum(
  1. dynamic value
)

Implementation

ContentPropertyDataTypeEnum? decodeContentPropertyDataTypeEnum (dynamic value) {
  if(value == null) {
    return null;
  }
  if(_$ContentPropertyDataTypeEnumValueMap.containsKey(value)){
    return _$ContentPropertyDataTypeEnumValueMap[value];
  }

  return ContentPropertyDataTypeEnum.ProtectedInvalidEnumValue;
}