isPPTX property
bool
get
isPPTX
Checks if a file path or URL represents a latest Microsoft PowerPoint presentation (.pptx).
Implementation
bool get isPPTX {
final mt = mimeType();
return mt ==
'application/vnd.openxmlformats-officedocument.presentationml.presentation';
}