isRAR property

bool get isRAR

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

Implementation

bool get isRAR {
  final mt = mimeType();
  return mt == 'application/x-rar-compressed';
}