From 71bb26054adb34461897199ab213bfba13034ff0 Mon Sep 17 00:00:00 2001 From: Allison Ryan Date: Mon, 2 May 2022 13:01:39 -0500 Subject: [PATCH] refactor: re-add children property --- .../src/components/android_spaceship/android_spaceship.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/pinball_components/lib/src/components/android_spaceship/android_spaceship.dart b/packages/pinball_components/lib/src/components/android_spaceship/android_spaceship.dart index 55f21f56..4d98b419 100644 --- a/packages/pinball_components/lib/src/components/android_spaceship/android_spaceship.dart +++ b/packages/pinball_components/lib/src/components/android_spaceship/android_spaceship.dart @@ -43,7 +43,8 @@ class AndroidSpaceship extends Component { @visibleForTesting AndroidSpaceship.test({ required this.bloc, - }); + Iterable? children, + }) : super(children: children); // TODO(alestiago): Consider refactoring once the following is merged: // https://github.com/flame-engine/flame/pull/1538