accessibilityPlaceholderMessage top-level property
The message in the label for the placeholder element used to enable accessibility.
This uses US English as the default message. Set this value at any time to update the label in the placeholder element.
Implementation
String get accessibilityPlaceholderMessage => _accessibilityPlaceholderMessage;
Implementation
set accessibilityPlaceholderMessage(String message) {
if (message == _accessibilityPlaceholderMessage) {
return;
}
_accessibilityPlaceholderMessage = message;
EngineSemantics.instance.semanticsHelper.updatePlaceholderLabel(message);
}