name property

  1. @override
IdentifierImpl name
override

Return the name of the class defining the constructor that is being invoked or the name of the field that is being referenced.

Implementation

@override
IdentifierImpl get name => _name;
void name=(IdentifierImpl name)

Implementation

set name(IdentifierImpl name) {
  _name = _becomeParentOf(name)!;
}