isPPT property
bool
get
isPPT
Determines whether a given string represents a PowerPoint file.
Implementation
bool get isPPT {
final ext = toLowerCase();
return ext.endsWith('.ppt') || ext.endsWith('.pptx');
}