isPNG property

bool isPNG

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

Implementation

bool get isPNG {
  final mt = mimeType();
  return mt == 'image/png';
}