throttle method

ValueChanged<T> throttle({
  1. int? timeout,
  2. bool trailing = false,
  3. String? id,
})

Implementation

ValueChanged<T> throttle({int? timeout, bool trailing = false, String? id}) {
  return FunctionValueProxy<T>(
    this,
    timeout: timeout,
    trailing: trailing,
    id: id,
  ).throttle;
}