throttle abstract method

void throttle(
  1. void onExecute(), {
  2. Duration duration = defaultDuration,
  3. required String tag,
})

Implementation

void throttle(
  void Function() onExecute, {
  Duration duration = defaultDuration,
  required String tag,
});