InputAudioBufferAppendEvent constructor

InputAudioBufferAppendEvent({
  1. required String audioB64,
  2. String? eventId,
})

Implementation

InputAudioBufferAppendEvent({
  required this.audioB64,
  this.eventId,
}) : super('input_audio_buffer.append') {
  _checkSize(audioB64);
}