validateYouTubeVideoURL static method

bool validateYouTubeVideoURL({
  1. required String url,
})

Implementation

static bool validateYouTubeVideoURL({required String url}) {
  final RegExp pattern = RegExp(youtubeRegex);
  final bool match = pattern.hasMatch(url);
  return match;
}