| Code-Review | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
linter: collection_methods_unrelated_type: Null not related to non-nullable
Fixes https://github.com/dart-lang/sdk/issues/57101
This change affects collection_methods_unrelated_type and
unrelated_type_equality_checks. For example these are now reported:
```dart
void f(Set<String> p1, int p2) {
p1.contains(null);
p2 == null;
}
```
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |