unregister method

bool unregister(
  1. String name
)

Removes the definition for name from the registry.

Returns true if a definition was found and removed, false otherwise.

Implementation

bool unregister(String name) => _definitions.remove(name) != null;