isAAC property
bool
get
isAAC
Checks if a file path or URL represents an AAC audio file.
Implementation
bool get isAAC {
final mt = mimeType();
return mt == 'audio/aac';
}
Checks if a file path or URL represents an AAC audio file.
bool get isAAC {
final mt = mimeType();
return mt == 'audio/aac';
}