NestedGestureDetector constructor

const NestedGestureDetector({
  1. Key? key,
  2. required Widget child,
  3. void onTap()?,
})

Implementation

const NestedGestureDetector({Key? key, required this.child, this.onTap})
    : super(key: key);