YoutubeInsertPlaylistsCommand constructor

YoutubeInsertPlaylistsCommand()

Implementation

YoutubeInsertPlaylistsCommand() {
  argParser
    ..addOption('part',
        defaultsTo: 'snippet,contentDetails,status',
        help:
            '''The part parameter serves two purposes in this operation. It identifies the properties that the write operation will set as well as the properties that the API response will include.

            The part properties that you can include in the parameter value are id, snippet, contentDetails, and status.''')
    ..addOption('body',
        mandatory: true,
        help:
            'Provide a liveBroadcast resource [https://developers.google.com/youtube/v3/live/docs/liveBroadcasts#resource] in the request body');
}