copyWith method
Implementation
AudioPublishOptions copyWith({
AudioEncoding? encoding,
bool? dtx,
String? name,
String? stream,
bool? red,
bool? preConnect,
}) =>
AudioPublishOptions(
encoding: encoding ?? this.encoding,
dtx: dtx ?? this.dtx,
name: name ?? this.name,
stream: stream ?? this.stream,
red: red ?? this.red,
preConnect: preConnect ?? this.preConnect,
);