DebounceTapWidget constructor

const DebounceTapWidget({
  1. Key? key,
  2. Widget? child,
  3. Function? onTap,
})

Implementation

const DebounceTapWidget({
  Key? key,
  Widget? child,
  Function? onTap,
}) : super(
        key: key,
        child: child,
        onTap: onTap,
        type: TapType.debounce,
      );