DeploymentLaunchConfig constructor

DeploymentLaunchConfig({
  1. required String launchFile,
  2. required String packageName,
  3. Map<String, String>? environmentVariables,
  4. String? postLaunchFile,
  5. String? preLaunchFile,
})

Implementation

DeploymentLaunchConfig({
  required this.launchFile,
  required this.packageName,
  this.environmentVariables,
  this.postLaunchFile,
  this.preLaunchFile,
});