unregister method
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);
}