findGenericConstructor static method
Look up a registered generic constructor factory.
Returns null if no generic constructor is registered for this class/ctor.
Implementation
static GenericConstructorFactory? findGenericConstructor(
String className,
String constructorName,
) {
return _genericConstructors['$className.$constructorName'];
}