isAudio property
bool
get
isAudio
Whether this is an audio file.
Implementation
bool get isAudio {
final ext = extension.toLowerCase();
return ['mp3', 'wav', 'aac', 'm4a', 'ogg'].contains(ext);
}
Whether this is an audio file.
bool get isAudio {
final ext = extension.toLowerCase();
return ['mp3', 'wav', 'aac', 'm4a', 'ogg'].contains(ext);
}