isPresentationFile property
bool
get
isPresentationFile
Checks if this file path represents a presentation
Returns true if the file is likely a presentation based on extension
Example:
print('/path/to/presentation.pptx'.isPresentationFile); // true
Implementation
bool get isPresentationFile => QFileInfoUtils.isPresentation(this);