LaunchConfig constructor

LaunchConfig({
  1. required String launchFile,
  2. required String packageName,
  3. Map<String, String>? environmentVariables,
  4. PortForwardingConfig? portForwardingConfig,
  5. bool? streamUI,
})

Implementation

LaunchConfig({
  required this.launchFile,
  required this.packageName,
  this.environmentVariables,
  this.portForwardingConfig,
  this.streamUI,
});