copyWith method

AudioSettings copyWith({
  1. bool? muted,
  2. int? bitrate,
})

Implementation

AudioSettings copyWith({
  bool? muted,
  int? bitrate,
}) {
  return AudioSettings(
    bitrate: bitrate ?? this.bitrate,
  );
}