mirror of
https://github.com/flame-engine/flame.git
synced 2025-11-01 10:38:17 +08:00
I have just finished steps 1-4 of the Klondike tutorial and noticed a couple of minor things that look to be outdated with the current dart / flame versions. ### Step 3 - `late` keyword isn't required When following this step the analyser hightlight this rule [unnecessary_late](https://dart.dev/tools/linter-rules/unnecessary_late) (introduced in Dart 2.16.0) which states: > Top-level and static variables with initializers are already evaluated lazily as if they are marked late. I updated the notes around why the laziness is important so the reader can still understand the reasoning.