isVideoFileName property
bool
get
isVideoFileName
检查字符串是否为视频文件名。
Implementation
bool get isVideoFileName {
final String path = toLowerCase();
return path.endsWith(".mp4") ||
path.endsWith(".avi") ||
path.endsWith(".wmv") ||
path.endsWith(".rmvb") ||
path.endsWith(".mpg") ||
path.endsWith(".mpeg") ||
path.endsWith(".3gp");
}