isAIFF property

bool get isAIFF

Checks if a file path or URL represents an AIFF audio file.

Implementation

bool get isAIFF {
  final mt = mimeType();
  return mt == 'audio/aiff' || mt == 'audio/x-aiff';
}