decodeFireteamPlatformInviteResult function

FireteamPlatformInviteResult? decodeFireteamPlatformInviteResult(
  1. dynamic value
)

Implementation

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

  return FireteamPlatformInviteResult.ProtectedInvalidEnumValue;
}