isValidYouTubeVideo property

bool get isValidYouTubeVideo

Extension to validate YouTube video URL

Implementation

bool get isValidYouTubeVideo {
  return RegExp(
          r'^(?:https?:\/\/)?(?:www\.)?(?:youtu\.be\/|youtube\.com\/(?:embed\/|v\/|watch\?v=|watch\?.+&v=))((\w|-){11})(?:\S+)?$')
      .hasMatch(this);
}