copyWith method

RtmpUrl copyWith({
  1. String? url,
  2. String? streamKey,
})

Implementation

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