debouncing 1.1.0
debouncing: ^1.1.0 copied to clipboard
A lightweight Flutter package providing a simple [debounce, throttle, back off] utility to function calls, ideal for optimizing performance in event-driven application.
1.1.0 - 9 May 2025 #
- Added the ability to cancel previous event on the [throttleTransform].
- Unit tests were added.
1.0.1 - 5 May 2025 #
- The repository link to github was updated.
1.0.0 - 5 May 2025 #
- Introduced:
- Debounce, Throttle and Event Transformers [debounceTransform, throttleTransform] with configurable [delay/interval, leading, trailing].
- BackOff utility is used for holding options for retrying a function with configurable [initialDelay, percentageRandomization, maxDelay, maxAttempts, retryIf].