async chooseAudioInputDevice()

in web-ui/src/components/chime/ChimeSdkWrapper.js [338:345]


  async chooseAudioInputDevice(device) {
    try {
      await this.audioVideo.chooseAudioInputDevice(device.value);
      this.currentAudioInputDevice = device;
    } catch (error) {
      this.logError(error);
    }
  }