commitCharacters property

List<String> get commitCharacters

An optional set of characters that when pressed while this completion is active will accept it first and then type that character. Note that all commit characters should have length=1 and that superfluous characters will be ignored.

Implementation

_i2.List<_i2.String> get commitCharacters => (_i5.getProperty(
      this,
      'commitCharacters',
    ) as _i2.List)
        .cast();
set commitCharacters (List<String> value)

Implementation

set commitCharacters(_i2.List<_i2.String> value) {
  _i5.setProperty(
    this,
    'commitCharacters',
    value,
  );
}