isRegistered static method

bool isRegistered(
  1. String componentType
)

Checks if a component type is registered.

Implementation

static bool isRegistered(String componentType) {
  return parsers.containsKey(componentType);
}