EgressResponse constructor

EgressResponse({
  1. required bool broadcasting,
  2. FrameRecordingResponse? frameRecording,
  3. EgressHLSResponse? hls,
  4. List<EgressRTMPResponse> rtmps = const [],
})

Returns a new EgressResponse instance.

Implementation

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