SpeechRecognition API is not yet supported so temporarily the Dev will come with speech recognition javascript interface that you could use.
let webvium = Webvium;
if (!(webvium === undefined)) {
if (webvium.startSpeechRecognition()) {
console.log("listening....");
}
}
// this function was called by the Webvium API Provider and includes speech data
function onSpeechReceived(let result) {
// your code goes here
}
SpeechRecognition API is not yet supported so temporarily the Dev will come with speech recognition javascript interface that you could use.