KeymotionGestureDetector constructor

const KeymotionGestureDetector({
  1. Key? key,
  2. required Widget child,
  3. GestureDragUpdateCallback? onUpdate,
  4. GestureDragEndCallback? onEnd,
  5. GestureDragStartCallback? onStart,
})

@macro

Implementation

const KeymotionGestureDetector({
  Key? key,
  required this.child,
  this.onUpdate,
  this.onEnd,
  this.onStart,
}) : super(key: key);