EgressRTMPResponse constructor

EgressRTMPResponse({
  1. required String name,
  2. required DateTime startedAt,
  3. String? streamKey,
  4. String? streamUrl,
})

Returns a new EgressRTMPResponse instance.

Implementation

EgressRTMPResponse({
  required this.name,
  required this.startedAt,
  this.streamKey,
  this.streamUrl,
});