constructorName property

  1. @override
SimpleIdentifierImpl? constructorName
override

Return the name of the constructor that is being invoked, or null if the unnamed constructor is being invoked.

Implementation

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

Implementation

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