Check string is youtube video url
bool isYoutubeVideoUrl({String? id}) { var o = youtubeVideoUrl; if (o == null) return false; return (id == null || o.id == id); }