onPointerMove property

  1. @override
PointerEventCallback? onPointerMove

Callback for when the pointer is moving while it is over an element

Implementation

@override
PointerEventCallback? get onPointerMove =>
    (props[_$key__onPointerMove___$UbiquitousDomPropsMixin] ?? null)
        as PointerEventCallback?;
  1. @override
void onPointerMove=(PointerEventCallback? value)

Callback for when the pointer is moving while it is over an element

Implementation

@override
set onPointerMove(PointerEventCallback? value) =>
    props[_$key__onPointerMove___$UbiquitousDomPropsMixin] = value;