videoUri method

Uri videoUri(
  1. List<String> videoId
)

Implementation

Uri videoUri(List<String> videoId) {
  int length = videoId.length;
  String videoIds = videoId.join(',');
  var options = getVideoOption(videoIds, length);
  Uri url = new Uri.https(baseURL, "youtube/v3/videos", options);
  return url;
}