YoutubeListVideoCategoriesCommand constructor

YoutubeListVideoCategoriesCommand()

Implementation

YoutubeListVideoCategoriesCommand() {
  argParser
    ..addOption('id',
        valueHelp: 'id',
        help:
            'The id parameter specifies a comma-separated list of video category IDs for the resources that you are retrieving.')
    ..addOption('region-code',
        valueHelp: 'code',
        help:
            'The regionCode parameter instructs the API to return the list of video categories available in the specified country. The parameter value is an ISO 3166-1 alpha-2 country code.')
    ..addOption('hl',
        help:
            'The hl parameter instructs the API to retrieve localized resource metadata for a specific application language that the YouTube website supports. The parameter value must be a language code included in the list returned by the i18nLanguages.list method.');
}