decodeAwaType function

AwaType? decodeAwaType(
  1. dynamic value
)

Implementation

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

  return AwaType.ProtectedInvalidEnumValue;
}