Firebase Flutter tutorial includes incorrect statement statement to define GuestBookState
Open
a.tut.codelab-google
p2-medium
- Dominant language
- Dart
- Stars
- 3.1k
- Forks
- 3.5k
- Avg merge
- 2d 4h
- Merged PRs (30d)
- 95
Description
In [this codelabs firebase tutorial](https://firebase.google.com/codelabs/firebase-get-to-know-flutter#6), it shows below line of code which complains about invalid use of private type in public API...
```dart
@override
_GuestBookState createState() => _GuestBookState();
```
...but the sample source uses this line which gives no error...
`State createState() => _GuestBookState();`
https://github.com/flutter/codelabs/blob/7e69ced1af6a90e3c0ebaf2e6a1720ff34e7461e/firebase-get-to-know-flutter/step_09/lib/guest_book.dart#L23
Contributor guide
Assessment
This issue has not been assessed yet.