CancelableCallback constructor

CancelableCallback(
  1. void _schedule(),
  2. void _cancel()
)

Wraps the _schedule (invoke) and _cancel (drop-pending) actions. Audited: 2026-06-13

Implementation

CancelableCallback(this._schedule, this._cancel);