我无法使用Dart SpeechSynthesis类构造SpeechSynthesis对象。 Dart编辑抱怨道:“类'SpeechSynthesis'没有默认构造函数”。
答案 0 :(得分:1)
这是一个有效的例子:
import 'dart:html';
main() {
var u = new SpeechSynthesisUtterance();
u.text = 'Hello World';
u.lang = 'en-US';
u.rate = 1.2;
window.speechSynthesis.speak(u);
}
有关API的更多详细信息,请参阅the SpeechSynthesis Interface。