unregister static method

void unregister(
  1. String type
)

Removes a custom component builder registration.

After unregistering, the component will fall back to the default implementation if available.

type The component type identifier to unregister.

Implementation

static void unregister(String type) {
  _customComponents.remove(type);
}