Closed
Description
This file provides Dart constants that map onto Win32 constants. There are thousands of these, and there's no reason for me to document them. So I want to /// @nodoc
them.
The only way to do that is on a constant-by-constant basis, for example:
https://github.com/timsneath/win32/blob/3e568f0e4fe2deaba3b92c2cdc0d2bb04b739f0b/lib/src/constants.dart#L1715-L1725
Aside from the redundancy and extra work, this ruins the flow of the file and makes it hard to see which constants are grouped together. I'd love a way to annotate this as a file-level nodoc
so I could put all these together.