Skip to content

Commit 4d480a9

Browse files
committed
Fix analyzer
1 parent a2ad9b6 commit 4d480a9

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

lib/src/state/state.dart

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -200,12 +200,9 @@ final class OctopusState$Mutable extends OctopusState
200200
with _OctopusStateMutableMethods {
201201
/// {@nodoc}
202202
OctopusState$Mutable({
203-
required List<OctopusNode> children,
204-
required Map<String, String> arguments,
205-
}) : super(
206-
children: children,
207-
arguments: arguments,
208-
);
203+
required super.children,
204+
required super.arguments,
205+
});
209206

210207
factory OctopusState$Mutable.from(OctopusState state) => OctopusState$Mutable(
211208
children:

0 commit comments

Comments
 (0)