unregister method

void unregister(
  1. String function
)

Remove function from this handler.

Safe to call before or after engine construction. Pre-construction calls are remembered so init will not re-add the built-in default.

Implementation

void unregister(String function) {
  _tombstones.add(function);
  _dispatch.remove(function);
  _composedDispatch.remove(function);
}