diff --git a/packages/devtools_app/test/framework/scaffold/scaffold_debugger_test.dart b/packages/devtools_app/test/framework/scaffold/scaffold_debugger_test.dart index 381e3abac6c..f6ae6d744d5 100644 --- a/packages/devtools_app/test/framework/scaffold/scaffold_debugger_test.dart +++ b/packages/devtools_app/test/framework/scaffold/scaffold_debugger_test.dart @@ -110,15 +110,9 @@ class _TestScreen extends Screen { const _TestScreen( this.name, this.key, { - bool showFloatingDebuggerControls = true, - Key? tabKey, - }) : super( - name, - title: name, - icon: Icons.computer, - tabKey: tabKey, - showFloatingDebuggerControls: showFloatingDebuggerControls, - ); + super.showFloatingDebuggerControls = true, + super.tabKey, + }) : super(name, title: name, icon: Icons.computer); final String name; final Key key; diff --git a/packages/devtools_app/test/framework/scaffold/scaffold_debugging_controls_test.dart b/packages/devtools_app/test/framework/scaffold/scaffold_debugging_controls_test.dart index 09692bdf952..a6489ed0c8a 100644 --- a/packages/devtools_app/test/framework/scaffold/scaffold_debugging_controls_test.dart +++ b/packages/devtools_app/test/framework/scaffold/scaffold_debugging_controls_test.dart @@ -89,18 +89,8 @@ void main() { } class _TestScreen extends Screen { - const _TestScreen( - this.name, - this.key, { - bool showFloatingDebuggerControls = true, - Key? tabKey, - }) : super( - name, - title: name, - icon: Icons.computer, - tabKey: tabKey, - showFloatingDebuggerControls: showFloatingDebuggerControls, - ); + const _TestScreen(this.name, this.key, {super.tabKey}) + : super(name, title: name, icon: Icons.computer); final String name; final Key key; diff --git a/packages/devtools_app/test/framework/scaffold/scaffold_no_app_test.dart b/packages/devtools_app/test/framework/scaffold/scaffold_no_app_test.dart index aff4cfa7905..a686d5ac3a3 100644 --- a/packages/devtools_app/test/framework/scaffold/scaffold_no_app_test.dart +++ b/packages/devtools_app/test/framework/scaffold/scaffold_no_app_test.dart @@ -77,18 +77,8 @@ void main() { } class _TestScreen extends Screen { - const _TestScreen( - this.name, - this.key, { - bool showFloatingDebuggerControls = true, - Key? tabKey, - }) : super( - name, - title: name, - icon: Icons.computer, - tabKey: tabKey, - showFloatingDebuggerControls: showFloatingDebuggerControls, - ); + const _TestScreen(this.name, this.key, {super.tabKey}) + : super(name, title: name, icon: Icons.computer); final String name; final Key key; diff --git a/packages/devtools_app/test/framework/scaffold/scaffold_profile_test.dart b/packages/devtools_app/test/framework/scaffold/scaffold_profile_test.dart index ea4fbc45e41..2722d8d300a 100644 --- a/packages/devtools_app/test/framework/scaffold/scaffold_profile_test.dart +++ b/packages/devtools_app/test/framework/scaffold/scaffold_profile_test.dart @@ -84,18 +84,8 @@ void main() { } class _TestScreen extends Screen { - const _TestScreen( - this.name, - this.key, { - bool showFloatingDebuggerControls = true, - Key? tabKey, - }) : super( - name, - title: name, - icon: Icons.computer, - tabKey: tabKey, - showFloatingDebuggerControls: showFloatingDebuggerControls, - ); + const _TestScreen(this.name, this.key, {super.tabKey}) + : super(name, title: name, icon: Icons.computer); final String name; final Key key; diff --git a/packages/devtools_app/test/framework/scaffold/scaffold_test.dart b/packages/devtools_app/test/framework/scaffold/scaffold_test.dart index a888a352685..74d806eca1f 100644 --- a/packages/devtools_app/test/framework/scaffold/scaffold_test.dart +++ b/packages/devtools_app/test/framework/scaffold/scaffold_test.dart @@ -291,18 +291,8 @@ void main() { } class _TestScreen extends Screen { - const _TestScreen( - this.name, - this.key, { - bool showFloatingDebuggerControls = true, - Key? tabKey, - }) : super( - name, - title: name, - icon: Icons.computer, - tabKey: tabKey, - showFloatingDebuggerControls: showFloatingDebuggerControls, - ); + const _TestScreen(this.name, this.key, {super.tabKey}) + : super(name, title: name, icon: Icons.computer); final String name; final Key key;