isFLAC property
bool
get
isFLAC
Checks if a file path or URL represents a FLAC audio file.
Implementation
bool get isFLAC {
final mt = mimeType();
return mt == 'audio/x-flac';
}
Checks if a file path or URL represents a FLAC audio file.
bool get isFLAC {
final mt = mimeType();
return mt == 'audio/x-flac';
}