decodeDropStateEnum function
Implementation
DropStateEnum? decodeDropStateEnum (dynamic value) {
if(value == null) {
return null;
}
if(_$DropStateEnumValueMap.containsKey(value)){
return _$DropStateEnumValueMap[value];
}
return DropStateEnum.ProtectedInvalidEnumValue;
}