isXLS property
bool
get
isXLS
Checks if the file path or URL represents an old Microsoft Excel spreadsheet.
Implementation
bool get isXLS {
final mt = mimeType();
return mt == 'application/vnd.ms-excel';
}