SpeechSynthesisUtterance constructor

SpeechSynthesisUtterance([String text ])

Implementation

factory SpeechSynthesisUtterance([String text]) {
  if (text != null) {
    return SpeechSynthesisUtterance._create_1(text);
  }
  return SpeechSynthesisUtterance._create_2();
}