YoutubeApi constructor

YoutubeApi(
  1. String key, {
  2. int maxResults = 10,
})

Implementation

YoutubeApi(
  this.key, {
  int maxResults = 10,
}) {
  searchOptions = SearchOptions(maxResults: maxResults);
}