textFn property

String Function() get textFn

The active text evaluation closure.

Implementation

String Function() get textFn => _textFn;
set textFn (String value())

Implementation

set textFn(String Function() value) {
  if (_textFn != value) {
    _textFn = value;
    _subscribe();
  }
}