isArchive property

bool get isArchive

Check if this is an archive type

Implementation

bool get isArchive {
  return mimeType == 'application/zip' ||
      mimeType == 'application/vnd.rar' ||
      mimeType == 'application/x-tar' ||
      mimeType == 'application/gzip';
}