ignorables property

List<num>? ignorables

Specify keyCodes which should not be considered in the keypress event, otherwise the preventDefault will stop their default behavior especially in FF.

Implementation

_i2.List<_i2.num>? get ignorables => (_i4.getProperty(
      this,
      'ignorables',
    ) as _i2.List?)
        ?.cast();
void ignorables=(List<num>? value)

Implementation

set ignorables(_i2.List<_i2.num>? value) {
  _i4.setProperty(
    this,
    'ignorables',
    value ?? _i6.undefined,
  );
}