Flutter formaFlutter formatt

This commit is contained in:
Lukas Klingsbo
2020-05-01 00:53:03 +02:00
parent 41fcde6a38
commit ac81bbab97
2 changed files with 4 additions and 3 deletions

View File

@ -27,7 +27,8 @@ class Ball extends BodyComponent {
Paint _randomPaint() {
math.Random rng = math.Random();
return PaletteEntry(Color.fromARGB(rng.nextInt(255), rng.nextInt(255),
rng.nextInt(255), rng.nextInt(255))).paint;
rng.nextInt(255), rng.nextInt(255)))
.paint;
}
void _createBody(double radius, Vector2 position) {