This issue tracks the work needed to support "Private Named Parameters" in Dartdoc.
This feature does impact Dartdoc in that we want a private named parameter to be documented as its public name. Given a class like:
class C {
int _x;
C({required this._x});
}
Then the dartdoc for the constructor should look something like: