lastInput property
InputEvent
get
lastInput
Gets or sets the last InputEvent that occurred.
This property is useful in tools and real-time operations for determining where the mouse pointer was most recently located.
Setting this property does not notify about any changed event.
Implementation
_i3.InputEvent get lastInput => _i4.getProperty(
this,
'lastInput',
);
set
lastInput
(InputEvent value)
Implementation
set lastInput(_i3.InputEvent value) {
_i4.setProperty(
this,
'lastInput',
value,
);
}