DebounceWidget constructor

const DebounceWidget({
  1. Key? key,
  2. required Widget child,
  3. int? duration,
  4. VoidCallback? onDebounce,
})

Implementation

const DebounceWidget({Key? key, required this.child, this.duration, this.onDebounce}) : super(key: key);