Open
Description
dart 3.7.
The follow code triggers a warning when the lint omit_obvious_property_types is enabled.
String packageVersion = '0.1.1';
The problem is that if you also have type_annotate_public_apis enabled then removing the type will trigger the type_annotate_public_apis warning.
If type_annotate_public_apis is enabled and the variable is part of the public api then omit_obvious_property_types should be suppressed for that variable.