DartLaunchRequestArguments constructor

DartLaunchRequestArguments({
  1. bool? noDebug,
  2. required String program,
  3. List<String>? args,
  4. int? vmServicePort,
  5. List<String>? toolArgs,
  6. List<String>? vmAdditionalArgs,
  7. String? console,
  8. String? customTool,
  9. int? customToolReplacesArgs,
  10. Object? restart,
  11. String? name,
  12. String? cwd,
  13. Map<String, String>? env,
  14. List<String>? additionalProjectPaths,
  15. bool? debugSdkLibraries,
  16. bool? debugExternalPackageLibraries,
  17. bool? showGettersInDebugViews,
  18. bool? evaluateGettersInDebugViews,
  19. bool? evaluateToStringInDebugViews,
  20. bool? sendLogsToClient,
  21. bool? sendCustomProgressEvents = null,
  22. bool? allowAnsiColorOutput,
})

Implementation

DartLaunchRequestArguments({
  this.noDebug,
  required this.program,
  this.args,
  this.vmServicePort,
  this.toolArgs,
  this.vmAdditionalArgs,
  this.console,
  this.customTool,
  this.customToolReplacesArgs,
  super.restart,
  super.name,
  super.cwd,
  super.env,
  super.additionalProjectPaths,
  super.debugSdkLibraries,
  super.debugExternalPackageLibraries,
  super.showGettersInDebugViews,
  super.evaluateGettersInDebugViews,
  super.evaluateToStringInDebugViews,
  super.sendLogsToClient,
  super.sendCustomProgressEvents = null,
  super.allowAnsiColorOutput,
});