task_sequencer 1.0.2
task_sequencer: ^1.0.2 copied to clipboard
A lightweight Flutter/Dart utility package for managing sequential callbacks and debounced/repeated tasks.
1.0.0 #
Added #
- Initial release of
task_sequencer– a lightweight utility package for managing sequential and debounced/repeated async tasks in Flutter/Dart. TaskSequencer<T>: Executes callbacks sequentially to avoid race conditions.TaskSequencerList<T>: Manages a list of items with per-item task sequencing.Job: Provides debounced task execution similar to Kotlin’s Job.Job.repeat: Repeats a callback N times over a defined duration.