copy method
Implementation
AudioContextConfig copy({
bool? forceSpeaker,
bool? duckAudio,
bool? respectSilence,
bool? stayAwake,
}) {
return AudioContextConfig(
forceSpeaker: forceSpeaker ?? this.forceSpeaker,
duckAudio: duckAudio ?? this.duckAudio,
respectSilence: respectSilence ?? this.respectSilence,
stayAwake: stayAwake ?? this.stayAwake,
);
}