isOGG property
bool
get
isOGG
Checks if a file path or URL represents an OGG (Vorbis) audio file.
Implementation
bool get isOGG {
final mt = mimeType();
return mt?.contains('/ogg') ?? false;
}
Checks if a file path or URL represents an OGG (Vorbis) audio file.
bool get isOGG {
final mt = mimeType();
return mt?.contains('/ogg') ?? false;
}