YoutubeInsertStreamCommand constructor

YoutubeInsertStreamCommand()

Implementation

YoutubeInsertStreamCommand() {
  argParser
    ..addOption('part',
        defaultsTo: 'id,snippet,cdn,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.''')
    ..addOption('body',
        mandatory: true,
        help:
            'Provide a liveBroadcast resource [https://developers.google.com/youtube/v3/live/docs/liveBroadcasts#resource] in the request body');
}