spokenFeedback property
ChromeSetting?
get
spokenFeedback
ChromeOS only.
Spoken feedback (text-to-speech). The value indicates whether the feature
is enabled or not. get()
requires accessibilityFeatures.read
permission. set()
and clear()
require accessibilityFeatures.modify
permission.
Implementation
ChromeSetting? get spokenFeedback =>
$js.chrome.accessibilityFeatures.spokenFeedback
?.let(ChromeSetting.fromJS);