getConstructor method
Returns the constructor with the given name, or null
if this element does not have a constructor with the given name.
Implementation
@override
ConstructorElement? getConstructor(String name) {
return constructors.firstWhereOrNull((ConstructorElement e) => e.name == name);
}