throttle method
Throttles the function with a certain delay.
Implementation
void throttle({int milliseconds = kDefaultThrottlerDuration}) {
final throttler = Throttle(milliseconds: milliseconds);
throttler.run(call);
}
Throttles the function with a certain delay.
void throttle({int milliseconds = kDefaultThrottlerDuration}) {
final throttler = Throttle(milliseconds: milliseconds);
throttler.run(call);
}