ProjectLaunch constructor

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

Implementation

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