valueFunction property

dynamic Function()? get valueFunction

Gets or sets a function that returns the primary value associated with this HTMLInfo, such as the string value of a text editor, which would be solicited by the TextEditingTool.

This typically returns a string.

Implementation

_i2.dynamic Function()? get valueFunction => () => _i4.callMethod(
      _i4.getProperty(
        this,
        'valueFunction',
      ),
      r'call',
      [this],
    );
set valueFunction (dynamic value()?)

Implementation

set valueFunction(_i2.dynamic Function()? value) {
  _i4.setProperty(
    this,
    'valueFunction',
    value == null ? _i5.undefined : _i4.allowInterop(value),
  );
}