cursor property

MouseCursor get cursor

The cursor to use when the pointer is over the hit test area.

Implementation

MouseCursor get cursor => _cursor;
set cursor (MouseCursor value)

Implementation

set cursor(MouseCursor value) {
  if (_cursor != value) {
    _cursor = value;
    // A repaint is needed in order to trigger a device update of
    // [MouseTracker] so that this new value can be found.
    notifyListeners();
  }
}