name property

  1. @override
SimpleIdentifierImpl? name
override

Return the name of the constructor, or null if the specified constructor is the unnamed constructor.

Implementation

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

Implementation

set name(SimpleIdentifierImpl? name) {
  _name = _becomeParentOf(name);
}