copyWith method
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,
);