ThrottledCallback constructor

ThrottledCallback(
  1. Throttler _throttler,
  2. void _action()
)

Creates a callable wrapper around a Throttler and action.

Implementation

ThrottledCallback(this._throttler, this._action);