decodeTierType function

TierType? decodeTierType(
  1. dynamic value
)

Implementation

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

  return TierType.ProtectedInvalidEnumValue;
}