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
When a class is exported, then it should be visible where that class comes from.
For example, the Rectangle class in dart:html is just a reexport from dart:math: export 'dart:math' show Rectangle, Point;
Currently it is not visible that this relationship exists (which means that it is, for example, not possible to know that html.Point is assignable to math.Point).