copyWith method
Returns a copy of this RealtimeAudioConfig with the given fields
replaced. Pass null for any field to clear the existing value.
Implementation
RealtimeAudioConfig copyWith({
Object? input = unsetCopyWithValue,
Object? output = unsetCopyWithValue,
}) => RealtimeAudioConfig(
input: identical(input, unsetCopyWithValue)
? this.input
: input as RealtimeAudioConfigInput?,
output: identical(output, unsetCopyWithValue)
? this.output
: output as RealtimeAudioConfigOutput?,
);