decodeAwaType function
Implementation
AwaType? decodeAwaType (dynamic value) {
if(value == null) {
return null;
}
if(_$AwaTypeValueMap.containsKey(value)){
return _$AwaTypeValueMap[value];
}
return AwaType.ProtectedInvalidEnumValue;
}