nexbounce 1.0.10 copy "nexbounce: ^1.0.10" to clipboard
nexbounce: ^1.0.10 copied to clipboard

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.
1
likes
130
pub points
0%
popularity

Publisher

unverified uploader

A simple dart package for debouncing heavy tasks and functions.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

More

Packages that depend on nexbounce