isISO property

bool isISO

Checks if a file path or URL represents an ISO disc image.

Implementation

bool get isISO {
  final mt = mimeType();
  return mt == 'application/x-iso9660-image';
}