AsyncAction<V> constructor

AsyncAction<V>(
  1. Future<V> _onDone,
  2. Future<bool> _onDefer,
  3. List<Future<bool>> _futureCancellations,
  4. List<Future> _executionDeferrals,
  5. Function _lockedGetter,
  6. Function _cancelledGetter,
  7. Function _doneGetter,
)

Implementation

AsyncAction(
    this._onDone,
    this._onDefer,
    this._futureCancellations,
    this._executionDeferrals,
    this._lockedGetter,
    this._cancelledGetter,
    this._doneGetter);