private bool CheckNullValues()

in src/AIHub/Controllers/VideoAnalyzerController.cs [265:272]


    private bool CheckNullValues(IFormFile videoFile)
    {
        if (videoFile == null)
        {
            return true;
        }
        return false;
    }