decodeUnitType function

UnitType? decodeUnitType(
  1. dynamic value
)

Implementation

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

  return UnitType.ProtectedInvalidEnumValue;
}