isTAR property

bool get isTAR

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

Implementation

bool get isTAR {
  final mt = mimeType();
  return mt == 'application/x-tar';
}