isFLV property
bool
get
isFLV
Checks if a file path or URL represents an FLV video file.
Implementation
bool get isFLV {
final mt = mimeType();
return mt == 'video/x-flv';
}
Checks if a file path or URL represents an FLV video file.
bool get isFLV {
final mt = mimeType();
return mt == 'video/x-flv';
}