clickCount property
num
get
clickCount
Gets or sets whether this event represents a click or a double-click. It is zero if not a click; one if a single-click; two if a double-click. This property is valid if this is a mouse event.
Implementation
_i2.num get clickCount => _i4.getProperty(
this,
'clickCount',
);
set
clickCount
(num value)
Implementation
set clickCount(_i2.num value) {
_i4.setProperty(
this,
'clickCount',
value,
);
}