trendingUri method

Uri trendingUri({
  1. required String regionCode,
})

Implementation

Uri trendingUri({required String regionCode}) {
  this.regionCode = regionCode;
  final options = getTrendingOption(regionCode);
  Uri url = new Uri.https(baseURL, "youtube/v3/videos", options);
  return url;
}