EgressResponse constructor

EgressResponse({
  1. required bool broadcasting,
  2. CompositeRecordingResponse? compositeRecording,
  3. FrameRecordingResponse? frameRecording,
  4. EgressHLSResponse? hls,
  5. IndividualRecordingResponse? individualRecording,
  6. RawRecordingResponse? rawRecording,
  7. List<EgressRTMPResponse> rtmps = const [],
})

Returns a new EgressResponse instance.

Implementation

EgressResponse({
  required this.broadcasting,
  this.compositeRecording,
  this.frameRecording,
  this.hls,
  this.individualRecording,
  this.rawRecording,
  this.rtmps = const [],
});