onLongPressStart method
Implementation
@mustCallSuper
void onLongPressStart(LongPressStartEvent event) {
event.deliverAtPoint(
rootComponent: game,
eventHandler: (LongPressCallbacks component) {
_records.add(TaggedComponent(event.pointerId, component));
component.onLongPressStart(event);
},
);
}