@@ -45,7 +45,7 @@ class RunCommand extends RunCommandBase {
45
45
@override
46
46
final String description = 'Run your Flutter app on an attached device.' ;
47
47
48
- RunCommand ({bool verboseHelp: false }) {
48
+ RunCommand ({ bool verboseHelp: false }) {
49
49
argParser.addFlag ('full-restart' ,
50
50
defaultsTo: true ,
51
51
help: 'Stop any currently running application process before running the app.' );
@@ -64,16 +64,20 @@ class RunCommand extends RunCommandBase {
64
64
usesPubOption ();
65
65
66
66
// Option to enable hot reloading.
67
- argParser.addFlag ('hot' ,
68
- negatable: true ,
69
- defaultsTo: kHotReloadDefault,
70
- help: 'Run with support for hot reloading.' );
67
+ argParser.addFlag (
68
+ 'hot' ,
69
+ negatable: true ,
70
+ defaultsTo: kHotReloadDefault,
71
+ help: 'Run with support for hot reloading.'
72
+ );
71
73
72
74
// Option to write the pid to a file.
73
- argParser.addOption ('pid-file' ,
74
- help: "Specify a file to write the process id to.\n "
75
- "You can send SIGUSR1 to trigger a hot reload\n "
76
- "and SIGUSR2 to trigger a full restart." );
75
+ argParser.addOption (
76
+ 'pid-file' ,
77
+ help: 'Specify a file to write the process id to.\n '
78
+ 'You can send SIGUSR1 to trigger a hot reload\n '
79
+ 'and SIGUSR2 to trigger a full restart.'
80
+ );
77
81
78
82
79
83
// Hidden option to enable a benchmarking mode. This will run the given
@@ -273,7 +277,7 @@ Future<int> startApp(
273
277
// messy.
274
278
if (stop) {
275
279
if (package != null ) {
276
- printTrace (" Stopping app ' ${package .name }' on ${device .name }." );
280
+ printTrace (' Stopping app " ${package .name }" on ${device .name }.' );
277
281
await device.stopApp (package);
278
282
}
279
283
}
0 commit comments