@@ -125,6 +125,7 @@ class TestDebugSettings extends DebugSettings {
125
125
required super .useSseForDebugProxy,
126
126
required super .useSseForInjectedClient,
127
127
required super .spawnDds,
128
+ required super .ddsPort,
128
129
required super .enableDevToolsLaunch,
129
130
required super .launchDevToolsInNewWindow,
130
131
required super .emitDebugEvents,
@@ -138,6 +139,7 @@ class TestDebugSettings extends DebugSettings {
138
139
bool ? enableDebugExtension,
139
140
bool ? useSse,
140
141
bool ? spawnDds,
142
+ int ? ddsPort,
141
143
bool ? enableDevToolsLaunch,
142
144
bool ? launchDevToolsInNewWindow,
143
145
bool ? emitDebugEvents,
@@ -152,6 +154,7 @@ class TestDebugSettings extends DebugSettings {
152
154
useSseForDebugBackend: useSse ?? useSseForDebugBackend,
153
155
useSseForInjectedClient: useSse ?? useSseForInjectedClient,
154
156
spawnDds: spawnDds ?? this .spawnDds,
157
+ ddsPort: ddsPort ?? this .ddsPort,
155
158
enableDevToolsLaunch: enableDevToolsLaunch ?? this .enableDevToolsLaunch,
156
159
launchDevToolsInNewWindow:
157
160
launchDevToolsInNewWindow ?? this .launchDevToolsInNewWindow,
0 commit comments