isPPT property

bool get isPPT

Checks if a file path or URL represents an Old Microsoft PowerPoint presentation (.pptx).

Implementation

bool get isPPT {
  final mt = mimeType();
  return mt == 'application/vnd.ms-powerpoint';
}