RtmpUrl constructor

const RtmpUrl({
  1. required String url,
  2. required String streamKey,
  3. dynamic extra,
  4. int? clientId,
})

Represents an RTMP URL

Implementation

const RtmpUrl({
  required this.url,
  required this.streamKey,
  this.extra,
  this.clientId,
});