is7Z property

bool get is7Z

Checks if a file path or URL represents a 7-Zip archive.

Implementation

bool get is7Z {
  final mt = mimeType();
  return mt == 'application/x-7z-compressed';
}