isVideoFormat property

bool get isVideoFormat

Implementation

bool get isVideoFormat {
  if (isEmpty) {
    return false;
  }

  if (!contains(".")) {
    return false;
  }

  if (!_videoFormats.contains(split(".").last.toLowerCase())) {
    return false;
  }

  return true;
}