create static method
Create a new Flutter project
Implementation
static Future<Process> create(FlutterProjectConfig config) async {
return Process.start(
config.executableName,
config.fullArgs,
workingDirectory: config.projectParentDir,
runInShell: true,
);
}