decodeFireteamPlatformInviteResult function
Implementation
FireteamPlatformInviteResult? decodeFireteamPlatformInviteResult (dynamic value) {
if(value == null) {
return null;
}
if(_$FireteamPlatformInviteResultValueMap.containsKey(value)){
return _$FireteamPlatformInviteResultValueMap[value];
}
return FireteamPlatformInviteResult.ProtectedInvalidEnumValue;
}