AntdTapHandler constructor

AntdTapHandler({
  1. required BuildContext context,
  2. AntdTapEventRegistry? registry,
  3. required AntdTapOptions options,
  4. ValueChanged<bool>? onTouchStateChange,
})

Implementation

AntdTapHandler(
    {required this.context,
    this.registry,
    required this.options,
    this.onTouchStateChange})
    : _throttleDebouncer = AntdThrottleDebouncer(
        throttle: options.throttle,
        debounce: options.debounce,
      );