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