Whether the element is private.
Private elements are visible only within the library in which they are declared.
@override bool get isPrivate { var name = this.name; if (name == null) { return true; } return Identifier.isPrivateName(name); }