Skip to content

Instantly share code, notes, and snippets.

@Klerith
Klerith / debouncer.dart
Last active February 22, 2025 03:09
Flutter: Debouncer manual
import 'dart:async';
// Creditos
// https://stackoverflow.com/a/52922130/7834829
class Debouncer<T> {
Debouncer({
required this.duration,
this.onValue
});