isVideoFile property
bool
get
isVideoFile
Checks if this file path represents a video
Returns true if the file is likely a video based on extension
Example:
print('/path/to/movie.mp4'.isVideoFile); // true
Implementation
bool get isVideoFile => QFileInfoUtils.isVideo(this);