LiveStreamStatus constructor

const LiveStreamStatus({
  1. ParticipantId? startedBy,
  2. StreamingLayout? layout,
  3. required StreamId streamId,
})

Implementation

const factory LiveStreamStatus({
  /// The participant who started the stream.
  ParticipantId? startedBy,

  /// Specifies how the participants' videos are laid out in the stream.
  StreamingLayout? layout,

  /// The identifier of the live streaming instance.
  required StreamId streamId,
}) = _LiveStreamStatus;