constructorName property

  1. @override
SimpleIdentifierImpl? constructorName
override

Return the name of the constructor being invoked, or null if this annotation is not the invocation of a named constructor.

Implementation

@override
SimpleIdentifierImpl? get constructorName => _constructorName;
void constructorName=(SimpleIdentifierImpl? name)

Implementation

set constructorName(SimpleIdentifierImpl? name) {
  _constructorName = _becomeParentOf(name);
}