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
dart doc includes both the .padding and .expanded extension methods on the Widget class.
Actual result
The .padding extension method is missing:
The text was updated successfully, but these errors were encountered:
loic-sharma
changed the title
Static extensions on nullable class are missing
Extensions on nullable class are missing from generated docs
Oct 19, 2024
srawlins
added
type-bug
Incorrect behavior (everything from a crash to more subtle misbehavior)
P3
A lower priority bug or feature request
labels
Oct 21, 2024
Summary
If an extension is on
T?
, dart doc will not include it onT
’s API reference. Follow-up to #2021Repro
See: https://github.com/loic-sharma/static_extension_on_nullable
Create a library with an extension methods on
Widget
andWidget?
:Expected result
dart doc
includes both the.padding
and.expanded
extension methods on theWidget
class.Actual result
The
.padding
extension method is missing:The text was updated successfully, but these errors were encountered: