isVideoFile static method

bool isVideoFile(
  1. String filename
)

Implementation

static bool isVideoFile(String filename) {
  return _hasExtension(
    filename,
    ['mp4', 'mov', 'avi', 'mkv', 'flv', 'wmv', 'webm'],
  );
}