method asyncUnbindAll


void asyncUnbindAll()

Called at detached time to signal that an element's bindings should be cleaned up. This is done asynchronously so that users have the chance to call cancelUnbindAll to prevent unbinding.

Source

void asyncUnbindAll() {
  if (_unbound == true) return;
  _unbindLog.fine(() => '[$_name] asyncUnbindAll');
  _unbindAllJob = scheduleJob(_unbindAllJob, unbindAll);
}