MyDebounceWrapper constructor

MyDebounceWrapper(
  1. Widget child, {
  2. Key? key,
  3. TapDe? onTap,
  4. int countDownMillisec = 800,
})

Implementation

MyDebounceWrapper(this.child,
    {Key? key, this.onTap, this.countDownMillisec = 800})
    : super(key: key);