removeTextPlaceholder method
override
Requests that the client remove the text placeholder.
Implementation
@override
void removeTextPlaceholder() {
if (!widget.scribbleEnabled || _placeholderLocation == -1) {
return;
}
setState(() {
_placeholderLocation = -1;
});
}