-
Notifications
You must be signed in to change notification settings - Fork 133
Open
Labels
type-enhancementA request for a change that isn't a bugA request for a change that isn't a bug
Description
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;
/// Make a new [C] with [_x].
C({required this._x});
}Then the dartdoc for the constructor should look something like:
Make a new
Cwithx.C({required int x});
Metadata
Metadata
Assignees
Labels
type-enhancementA request for a change that isn't a bugA request for a change that isn't a bug