copyWith method

RealtimeTranscriptionSessionAudio copyWith({
  1. Object? input = unsetCopyWithValue,
})

Returns a copy with the given fields replaced.

Pass null for input to clear the existing value.

Implementation

RealtimeTranscriptionSessionAudio copyWith({
  Object? input = unsetCopyWithValue,
}) => RealtimeTranscriptionSessionAudio(
  input: identical(input, unsetCopyWithValue)
      ? this.input
      : input as RealtimeAudioConfigInput?,
);