bool isVideo(String path) { bool output = false; videoFormats.forEach((videoFormat) { if (path.toLowerCase().contains(videoFormat)) output = true; }); return output; }