isTouchEvent property

bool get isTouchEvent

This read-only property is true when the InputEvent is caused by a touch event.

Implementation

_i2.bool get isTouchEvent => _i4.getProperty(
      this,
      'isTouchEvent',
    );
set isTouchEvent (bool value)

Implementation

set isTouchEvent(_i2.bool value) {
  _i4.setProperty(
    this,
    'isTouchEvent',
    value,
  );
}