InputAudioBufferSpeechStoppedEvent.fromJson constructor

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

Implementation

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