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;
}