Create type adapters conforming to Effective Dart style
Open
enhancement
- Dominant language
- Dart
- Stars
- 4.4k
- Forks
- 449
- PR merge metrics
- No merged PRs in 30d
Description
According to the Effective Dart style guidelines, [public members should be type annotated](https://dart-lang.github.io/linter/lints/type_annotate_public_apis.html).
However, the current code doesn't do that:
```dart
class …Adapter extends TypeAdapter<…> {
@override
final typeId = …;
…
}
```
instead of
```dart
class …Adapter extends TypeAdapter<…> {
@override
final int typeId = …;
…
}
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.