ConditionalTapEventListener constructor

const ConditionalTapEventListener({
  1. required VoidCallback onTap,
  2. required ReactMode reactMode,
  3. required Widget child,
  4. Key? key,
})

Implementation

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