onPointerDataPacket property Null safety

PointerDataPacketCallback? onPointerDataPacket
override

A callback that is invoked when pointer data is available.

Accessing this value returns the value contained in the PlatformDispatcher singleton, so instead of getting it from here, you should consider getting it from WidgetsBinding.instance.platformDispatcher instead (or, when WidgetsBinding isn't available, from PlatformDispatcher.instance). The reason this value forwards to the PlatformDispatcher is to provide convenience for applications that only use a single main window.

The framework invokes this callback in the same zone in which the callback was set.

See also:

  • GestureBinding, the Flutter framework class which manages pointer events.

Implementation

@override
ui.PointerDataPacketCallback? get onPointerDataPacket => platformDispatcher.onPointerDataPacket;
void onPointerDataPacket=(PointerDataPacketCallback? callback)
override

Implementation

@override
set onPointerDataPacket(ui.PointerDataPacketCallback? callback) {
  platformDispatcher.onPointerDataPacket = callback;
}