ProjectLaunch constructor
ProjectLaunch({})
Implementation
ProjectLaunch({
required this.projectDir,
required this.projectPubspec,
required this.usesDb,
required this.includePreDeployScripts,
this.projectId,
this.dartVersionOverride,
this.preexistingProject,
this.performDeploy = true,
final List<String>? suggestedPreDeployScripts,
}) : suggestedPreDeployScripts = suggestedPreDeployScripts ?? [] {
configFilePath = _constructConfigFilePath(projectDir.path);
}