hasRegisteredType method

bool hasRegisteredType(
  1. Type type
)

Whether or not type has been registered with register.

Implementation

bool hasRegisteredType(Type type) {
  return _typeReferenceMap.containsKey(type);
}