start static method
void
start(})
Implementation
static void start(
String argument, {
bool showLog = false,
String? workingDirectory,
Progress? progress,
}) {
String command = '';
if (Platform.isWindows) {
command = 'flutter.bat $argument';
} else {
command = 'flutter $argument';
}
if (showLog) print(command);
command.start(
workingDirectory: workingDirectory,
progress: progress,
);
}