SpeechSynthesisErrorEventInit constructor
SpeechSynthesisErrorEventInit({
- SpeechSynthesisErrorCode? error,
- num? charIndex,
- num? charLength,
- num? elapsedTime,
- String? name,
- SpeechSynthesisUtterance? utterance,
Implementation
factory SpeechSynthesisErrorEventInit({
_i3.SpeechSynthesisErrorCode? error,
_i2.num? charIndex,
_i2.num? charLength,
_i2.num? elapsedTime,
_i2.String? name,
_i3.SpeechSynthesisUtterance? utterance,
}) =>
SpeechSynthesisErrorEventInit._(
error: error?.name ?? _i6.undefined,
charIndex: charIndex,
charLength: charLength,
elapsedTime: elapsedTime,
name: name,
utterance: utterance ?? _i6.undefined,
);