textNotifier property

ValueNotifier<String> textNotifier

The ValueNotifier for the TextField in search app bar.

Can be used to change text in TextField in search app bar. Can be changed by parameter: customTextNotifier = ValueNotifier<String>('')

Implementation

ValueNotifier<String> get textNotifier =>
    customTextNotifier ??
    _textNotifierGlobalFallBack;