getTrendingOption method
Implementation
Map<String, dynamic> getTrendingOption(String regionCode) {
this.regionCode = regionCode;
Map<String, dynamic> options = {
"part": "snippet",
"chart": "mostPopular",
"maxResults": "${this.maxResults}",
"regionCode": "${this.regionCode}",
"key": "${this.key}",
};
return options;
}