members from hidden subclass are shown as inherited
See https://pub.dev/documentation/shelf/latest/index.html
There classes https://pub.dev/documentation/shelf/latest/shelf/Request-class.html https://pub.dev/documentation/shelf/latest/shelf/Response-class.html
both subclass a hidden Message class. The members that are inherited from that class appear as inherited, but we'd like that to be an implementation detail.

@kevmoo Hmm, this seems to be working as I had originally intended (documented as a member of the class Request / Response with no reference to Message, while still marked as inherited).
To clarify, we should document an inherited element from a private class/mixin as not inherited at all?
@kevmoo Hmm, this seems to be working as I had originally intended (documented as a member of the class
Request/Responsewith no reference toMessage, while still marked as inherited).To clarify, we should document an inherited element from a private class/mixin as not inherited at all?
My feeling: if I cannot see the class the member is coming from, it's not inherited. Happy to discuss. This is just my take.
This seems reasonable.