After upgrade the linter to the new version (flutter_lints: 2.0.1) in my pubspec
the linter enables this rule:
library_private_types_in_public_api by default. I don't understand why. In my App project there are a lot of widget classes extended by StatefulWidget. The state class is always private. Example projects do it the same way. Can someone explain why this rule make sense?
Btw.: I know i can disable this rule.