decodeUnitType function
Implementation
UnitType? decodeUnitType (dynamic value) {
if(value == null) {
return null;
}
if(_$UnitTypeValueMap.containsKey(value)){
return _$UnitTypeValueMap[value];
}
return UnitType.ProtectedInvalidEnumValue;
}