Open
Description
We redid a bunch of classes that were declared like this:
abstract class ReallyAMixin {
factory ReallyAMixin._() => null;
...
}
To this:
mixin ReallyAMixin {
}
Which now is resulting in a new Dart doc link (...-mixin.html
instead of ...-class.html
), which is breaking external links. Is there some sensible way we could alias ReallyAMixin-class.html
to ReallyAMixin-mixin.html
? Obiviously for docs we control we should just update the links, but this might hurt things like old StackOverflow answers or blog posts.