ANTIPALSU Label template editor using flutter
import 'package:easy_debounce/easy_throttle.dart'; void main() { EasyThrottle.throttle( 'my-debouncer', Duration(milliseconds: 1000), () => { print('Executed !!!') }, onAfter: () => { print('After !!!') } ); }