InputAudioBufferSpeechStartedEvent.fromJson constructor

InputAudioBufferSpeechStartedEvent.fromJson(
  1. Map<String, dynamic> j
)

Implementation

factory InputAudioBufferSpeechStartedEvent.fromJson(Map<String, dynamic> j) => InputAudioBufferSpeechStartedEvent(
      eventId: j['event_id'] as String,
      itemId: j['item_id'] as String,
      audioStartMs: j['audio_start_ms'] as int,
    );