TapListener constructor

TapListener(
  1. void onTapLambda(
    1. Point2D
    )
)

Abstract class for handling tap gestures.

Tap gesture occurs after tapping on the screen.

Implementation

factory TapListener(
  void Function(Point2D) onTapLambda,

) => TapListener$Lambdas(
  onTapLambda,

);