client property

  1. @Deprecated('Instead directly access the clientX and clientY properties.')
Point<num> client

A Point representation of the clientX and clientY properties of this MouseEvent.

Deprecated: Prefer directly accessing the clientX and clientY properties on MouseEvent.

Implementation

@Deprecated('Instead directly access the clientX and clientY properties.')
Point get client => Point(clientX, clientY);