We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2ad9b6 commit 4d480a9Copy full SHA for 4d480a9
lib/src/state/state.dart
@@ -200,12 +200,9 @@ final class OctopusState$Mutable extends OctopusState
200
with _OctopusStateMutableMethods {
201
/// {@nodoc}
202
OctopusState$Mutable({
203
- required List<OctopusNode> children,
204
- required Map<String, String> arguments,
205
- }) : super(
206
- children: children,
207
- arguments: arguments,
208
- );
+ required super.children,
+ required super.arguments,
+ });
209
210
factory OctopusState$Mutable.from(OctopusState state) => OctopusState$Mutable(
211
children:
0 commit comments