stream property

Future<LiveStream> stream

A liveStream resource contains information about the video stream that you are transmitting to YouTube. The stream provides the content that will be broadcast to YouTube users. Once created, a LiveStreamItem resource can be bound to one or more LiveBroadcastItem resources.

Implementation

Future<LiveStream> get stream async {
  await _confirmToken();

  return LiveStream(_token!, dio);
}