ANTIPALSU Label template editor using flutter

text_debouncer_test.dart 252B

1234567891011121314
  1. import 'package:easy_debounce/easy_throttle.dart';
  2. void main() {
  3. EasyThrottle.throttle(
  4. 'my-debouncer',
  5. Duration(milliseconds: 1000),
  6. () => {
  7. print('Executed !!!')
  8. },
  9. onAfter: () => {
  10. print('After !!!')
  11. }
  12. );
  13. }