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