Debounce
Package which implements the debounce functionality. It may be used with or without callbacks and Futures.
Getting Started
import 'package:debounce/debounce.dart';
main() {
// duration defaults to 400 milliseconds.
final debounce = Debounce(() {
// Your code here...
});
debounce.call();
}
Bugs and improvements
For bugs and improvements issue tracker.