From 4d256fe68a6c19a46dc4126b95acf1de2890c144 Mon Sep 17 00:00:00 2001 From: alestiago Date: Mon, 25 Apr 2022 15:26:12 +0100 Subject: [PATCH] fix: wrong Iterable type --- packages/pinball_flame/lib/src/blueprint.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/pinball_flame/lib/src/blueprint.dart b/packages/pinball_flame/lib/src/blueprint.dart index 17a2845a..491016e7 100644 --- a/packages/pinball_flame/lib/src/blueprint.dart +++ b/packages/pinball_flame/lib/src/blueprint.dart @@ -24,7 +24,7 @@ class Blueprint { final List _components = []; - final List _blueprints = []; + final List _blueprints = []; Future _addToParent(Component parent) async { await parent.addAll(_components);