File tree Expand file tree Collapse file tree 2 files changed +24
-12
lines changed
packages/flutter_tools/lib/src/debug_adapters Expand file tree Collapse file tree 2 files changed +24
-12
lines changed Original file line number Diff line number Diff line change @@ -21,14 +21,20 @@ import 'mixins.dart';
21
21
class FlutterDebugAdapter extends DartDebugAdapter <FlutterLaunchRequestArguments , FlutterAttachRequestArguments >
22
22
with PidTracker {
23
23
FlutterDebugAdapter (
24
- super . channel, {
24
+ ByteStreamServerChannel channel, {
25
25
required this .fileSystem,
26
26
required this .platform,
27
- super .ipv6,
28
- super .enableDds,
29
- super .enableAuthCodes,
30
- super .logger,
31
- });
27
+ bool ipv6 = false ,
28
+ bool enableDds = true ,
29
+ bool enableAuthCodes = true ,
30
+ Logger ? logger,
31
+ }) : super (
32
+ channel,
33
+ ipv6: ipv6,
34
+ enableDds: enableDds,
35
+ enableAuthCodes: enableAuthCodes,
36
+ logger: logger,
37
+ );
32
38
33
39
FileSystem fileSystem;
34
40
Platform platform;
Original file line number Diff line number Diff line change @@ -21,14 +21,20 @@ import 'mixins.dart';
21
21
class FlutterTestDebugAdapter extends DartDebugAdapter <FlutterLaunchRequestArguments , FlutterAttachRequestArguments >
22
22
with PidTracker , TestAdapter {
23
23
FlutterTestDebugAdapter (
24
- super . channel, {
24
+ ByteStreamServerChannel channel, {
25
25
required this .fileSystem,
26
26
required this .platform,
27
- super .ipv6,
28
- super .enableDds,
29
- super .enableAuthCodes,
30
- super .logger,
31
- });
27
+ bool ipv6 = false ,
28
+ bool enableDds = true ,
29
+ bool enableAuthCodes = true ,
30
+ Logger ? logger,
31
+ }) : super (
32
+ channel,
33
+ ipv6: ipv6,
34
+ enableDds: enableDds,
35
+ enableAuthCodes: enableAuthCodes,
36
+ logger: logger,
37
+ );
32
38
33
39
FileSystem fileSystem;
34
40
Platform platform;
You can’t perform that action at this time.
0 commit comments