isWebM property
bool
get
isWebM
Checks if a file path or URL represents a WebM video file.
Implementation
bool get isWebM {
final mt = mimeType();
return mt == 'video/webm';
}
Checks if a file path or URL represents a WebM video file.
bool get isWebM {
final mt = mimeType();
return mt == 'video/webm';
}