decodeFireteamPlatform function

FireteamPlatform? decodeFireteamPlatform(
  1. dynamic value
)

Implementation

FireteamPlatform? decodeFireteamPlatform (dynamic value) {
  if(value == null) {
    return null;
  }
  if(_$FireteamPlatformValueMap.containsKey(value)){
    return _$FireteamPlatformValueMap[value];
  }

  return FireteamPlatform.ProtectedInvalidEnumValue;
}