choices property

Array<String>? choices

Gets or sets the an array of possible choices for a custom TextEditingTool. The value must be an array of strings.

The default value is null. For example usage, see the Custom TextEditingTool Sample.

Implementation

_i7.Array<_i2.String>? get choices => _i4.getProperty(
      this,
      'choices',
    );
void choices=(Array<String>? value)

Implementation

set choices(_i7.Array<_i2.String>? value) {
  _i4.setProperty(
    this,
    'choices',
    value ?? _i5.undefined,
  );
}