nexbounce 1.0.10
SDKdartflutter
Platformandroidioswindowslinuxmacosweb
A simple dart package for debouncing heavy tasks and functions.
A simple dart package for debouncing heavy tasks and functions.
Usage
final nexbounce = Nexbounce();
nexbounce
..enqueue(() => print('Hi!'))
..enqueue(() => print('Hi!'))
..enqueue(() => print('Hi!'))
..enqueue(() => print('Hi!'));
// 'Hi!' is only printed once.