isTIF property

bool isTIF

Checks if a file path or URL represents a TIFF or TIF image.

Implementation

bool get isTIF {
  final mt = mimeType();
  return mt == 'image/tiff';
}