EgressResponse constructor

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

Returns a new EgressResponse instance.

Implementation

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