unnamedConstructor property
The unnamed constructor of this element, or null
if this element does not have an unnamed constructor.
Implementation
@override
ConstructorElement? get unnamedConstructor {
return constructors.firstWhereOrNull((ConstructorElement e) => e.name.isEmpty);
}