You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think the solution is to treat any intermediate private classes as invisible "proxies", and continue to the public ones.
So if
A implements B, and
C implements _D implements B, and
E implements _F implements _G implements B,
then the page for B should list, as implementors, A (as it would today), C (skipping over _D), and E (skipping over _F and _G). Classes which implement A, C, and E are not shown (it is only a list of immediate implementors), but the links are there to follow.
https://master-api.flutter.dev/flutter/widgets/RestorableInt-class.html says:
Click on
RestorableNum
, you get https://master-api.flutter.dev/flutter/widgets/RestorableNum-class.html:Click on
RestorableValue
, you get https://master-api.flutter.dev/flutter/widgets/RestorableValue-class.html:...with no "Implementers" section!
The text was updated successfully, but these errors were encountered: