throttling 0.7.0
throttling: ^0.7.0 copied to clipboard
contain "throttling" and "debouncing" async helper classes with listeners for flutter
example/lib/main.dart
import './src/example.dart';
void main() async {
print('\n# BEGIN');
await Example.throttleExample();
await Example.debounceExample();
print('\n# END');
}