isBMP property

bool isBMP

Checks if a file path or URL represents a BMP image.

Implementation

bool get isBMP {
  final mt = mimeType();
  return mt == 'image/bmp';
}