isYTcontentID method

bool isYTcontentID(
  1. String s
)

Is this youtube contents ID?

Implementation

bool isYTcontentID(String s) {
  if (isPath(s) || isEnclst(s)) {
    return false;
  } else {
    if (s.length == 11) {
      return true;
    } else {
      return false;
    }
  }
}