DartLaunchRequestArguments constructor
DartLaunchRequestArguments({
- bool? noDebug,
- required String program,
- List<
String> ? args, - int? vmServicePort,
- List<
String> ? toolArgs, - List<
String> ? vmAdditionalArgs, - String? console,
- String? customTool,
- int? customToolReplacesArgs,
- Object? restart,
- String? name,
- String? cwd,
- Map<
String, String> ? env, - List<
String> ? additionalProjectPaths, - bool? debugSdkLibraries,
- bool? debugExternalPackageLibraries,
- bool? showGettersInDebugViews,
- bool? evaluateGettersInDebugViews,
- bool? evaluateToStringInDebugViews,
- bool? sendLogsToClient,
- bool? sendCustomProgressEvents = null,
- 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,
});