chore: Update to Flutter 3.13 (#2656)

Updates the pipeline to use Flutter 3.13 and does all the analyze fixes.
This commit is contained in:
Lukas Klingsbo
2023-08-18 20:13:17 +02:00
committed by GitHub
parent d08284ddca
commit 9887892493
48 changed files with 53 additions and 53 deletions

View File

@ -61,7 +61,7 @@ class KlondikeGame extends FlameGame {
final cards = [
for (var rank = 1; rank <= 13; rank++)
for (var suit = 0; suit < 4; suit++) Card(rank, suit)
for (var suit = 0; suit < 4; suit++) Card(rank, suit),
];
cards.shuffle();
world.addAll(cards);