isWMV property
bool
get
isWMV
Checks if a file path or URL represents a WMV video file.
Implementation
bool get isWMV {
final mt = mimeType();
return mt == 'video/x-ms-wmv';
}
Checks if a file path or URL represents a WMV video file.
bool get isWMV {
final mt = mimeType();
return mt == 'video/x-ms-wmv';
}