isPPT property
bool
get
isPPT
Checks if string is an powerpoint file.
Implementation
bool get isPPT {
String ext = toLowerCase();
return ext.endsWith(".ppt") || ext.endsWith(".pptx");
}
Checks if string is an powerpoint file.
bool get isPPT {
String ext = toLowerCase();
return ext.endsWith(".ppt") || ext.endsWith(".pptx");
}