YoutubeBindBroadcastCommand constructor

YoutubeBindBroadcastCommand()

Implementation

YoutubeBindBroadcastCommand() {
  argParser
    ..addOption('id',
        mandatory: true,
        valueHelp: 'id',
        help:
            'The id parameter specifies the unique ID of the broadcast that is being bound to a video stream.')
    ..addOption('part',
        defaultsTo: 'id,snippet,contentDetails,status',
        help:
            'The part parameter specifies a comma-separated list of one or more liveBroadcast resource properties that the API response will include. The part names that you can include in the parameter value are id, snippet, contentDetails, and status.')
    ..addOption('stream-id',
        valueHelp: 'stream-id',
        help:
            'The streamId parameter specifies the unique ID of the video stream that is being bound to a broadcast. If this parameter is omitted, the API will remove any existing binding between the broadcast and a video stream.');
}