isAVI property

bool get isAVI

Checks if a file path or URL represents an AVI video file.

Implementation

bool get isAVI {
  final mt = mimeType();
  return mt == 'video/x-msvideo';
}