throttle method

VoidCallback throttle({
  1. int? timeout,
  2. bool trailing = false,
  3. String? id,
})

Implementation

VoidCallback throttle({int? timeout, bool trailing = false, String? id}) {
  return FunctionProxy(this, timeout: timeout, trailing: trailing, id: id)
      .throttle;
}