copyWith method

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

Implementation

RtmpUrl copyWith({
  String? url,
  String? streamKey,
  dynamic extra,
  int? clientId,
}) =>
    RtmpUrl(
      url: url ?? this.url,
      streamKey: streamKey ?? this.streamKey,
      extra: extra ?? this.extra,
      clientId: clientId ?? this.clientId,
    );