A collection of common issues to cover whenever reviewing Dart or Flutter code. These comments follow the Conventional Comments structure.
Issues
Problems that must be addressed.
initState first
issue: Avoid implementing this method before calling super.initState().
suggestion: Call super.initState before any other logic in your Stateful Widget.
Implementations of this method should start with a call to the inherited method, as in super.initState().