registerOnMove method
Single pointer move event.
A single pointer move event is defined as a pointer down, followed by a move, followed by a pointer up.
Parameters
- IN startPos is the start position involved in move action
- IN endPos is the end position involved in move action
Implementation
void registerOnMove(final MoveCallback? moveCallback) {
_moveCallback = moveCallback;
GemKitPlatform.instance.filterEvent(
pointerId,
'onMove',
moveCallback == null,
);
}