RecordingStatus constructor

const RecordingStatus({
  1. RecordingId? recordingId,
  2. ParticipantId? startedBy,
  3. StreamingLayout? layout,
  4. required StreamId streamId,
})

Implementation

const factory RecordingStatus({
  /// The id of the recording file.
  RecordingId? recordingId,

  /// The participant who started the recording.
  ParticipantId? startedBy,

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

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