searchUri method
Implementation
Uri searchUri(query, {String? type}) {
this.query = query;
this.type = type ?? this.type;
this.channelId = null;
var options = getOption();
Uri url = new Uri.https(baseURL, "youtube/v3/search", options);
return url;
}