searchUri method

Uri searchUri(
  1. dynamic query, {
  2. String? type,
})

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;
}