decodeTierType function
Implementation
TierType? decodeTierType (dynamic value) {
if(value == null) {
return null;
}
if(_$TierTypeValueMap.containsKey(value)){
return _$TierTypeValueMap[value];
}
return TierType.ProtectedInvalidEnumValue;
}