From 51c20d431e6550c1f27ff79af320516fa74f2cba Mon Sep 17 00:00:00 2001 From: Allison Ryan Date: Fri, 1 Apr 2022 15:49:41 -0500 Subject: [PATCH] style: trailing comma --- lib/game/components/spaceship_exit_rail.dart | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/game/components/spaceship_exit_rail.dart b/lib/game/components/spaceship_exit_rail.dart index 43c6d52f..fa6fab99 100644 --- a/lib/game/components/spaceship_exit_rail.dart +++ b/lib/game/components/spaceship_exit_rail.dart @@ -170,8 +170,9 @@ class _SpaceshipExitRailForeground extends SpriteComponent with HasGameRef { Future onLoad() async { await super.onLoad(); - sprite = await gameRef - .loadSprite(Assets.images.components.spaceshipDropTubeFront.path); + sprite = await gameRef.loadSprite( + Assets.images.components.spaceshipDropTubeFront.path, + ); } }