channelUri method
Implementation
Uri channelUri(String channelId, String? order) {
this.order = order ?? 'date';
this.channelId = channelId;
final options = getChannelOption(channelId, this.order!);
Uri url = new Uri.https(baseURL, "youtube/v3/search", options);
return url;
}