public speak()

in src/features/chat-page/chat-input/speech/use-text-to-speech.ts [69:74]


  public speak(value: string) {
    if (speechToTextStore.userDidUseMicrophone()) {
      textToSpeechStore.textToSpeech(value);
      speechToTextStore.resetMicrophoneUsed();
    }
  }