isRegistered static method

bool isRegistered(
  1. String type
)

Checks if a custom component builder is registered for the given type.

type The component type identifier. Returns true if a custom builder is registered.

Implementation

static bool isRegistered(String type) {
  return _customComponents.containsKey(type);
}