isDeb property

bool get isDeb

Checks if a file path or URL represents a ZIP archive.

Implementation

bool get isDeb {
  final mt = mimeType();
  return mt == 'application/x-debian-package';
}