firstInput property

InputEvent firstInput

Gets or sets the most recent mouse-down InputEvent that occurred.

Setting this property does not notify about any changed event.

Implementation

_i3.InputEvent get firstInput => _i4.getProperty(
      this,
      'firstInput',
    );
void firstInput=(InputEvent value)

Implementation

set firstInput(_i3.InputEvent value) {
  _i4.setProperty(
    this,
    'firstInput',
    value,
  );
}