ProjectLaunch constructor

ProjectLaunch({
  1. String? projectDir,
  2. String? projectId,
  3. bool? enableDb,
  4. bool? preexistingProject,
  5. bool? performDeploy,
  6. List<String>? suggestedPreDeployScripts,
})

Implementation

ProjectLaunch({
  final String? projectDir,
  this.projectId,
  this.enableDb,
  this.preexistingProject,
  this.performDeploy,
  final List<String>? suggestedPreDeployScripts,
}) : _projectDir = projectDir,
     suggestedPreDeployScripts = suggestedPreDeployScripts ?? [] {
  if (projectDir != null) {
    configFilePath = _constructConfigFilePath(projectDir);
  }
}