ThrottleTapWidget constructor

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

Implementation

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