decodeDestinyVendorReplyType function

DestinyVendorReplyType? decodeDestinyVendorReplyType(
  1. dynamic value
)

Implementation

DestinyVendorReplyType? decodeDestinyVendorReplyType (dynamic value) {
  if(value == null) {
    return null;
  }
  if(_$DestinyVendorReplyTypeValueMap.containsKey(value)){
    return _$DestinyVendorReplyTypeValueMap[value];
  }

  return DestinyVendorReplyType.ProtectedInvalidEnumValue;
}