DartAttachRequestArguments constructor
DartAttachRequestArguments({
- String? vmServiceUri,
- String? vmServiceInfoFile,
- Object? restart,
- String? name,
- String? cwd,
- List<
String> ? additionalProjectPaths, - bool? debugSdkLibraries,
- bool? debugExternalPackageLibraries,
- bool? showGettersInDebugViews,
- bool? evaluateGettersInDebugViews,
- bool? evaluateToStringInDebugViews,
- bool? sendLogsToClient,
- bool? sendCustomProgressEvents = null,
- bool? allowAnsiColorOutput,
Implementation
DartAttachRequestArguments({
this.vmServiceUri,
this.vmServiceInfoFile,
super.restart,
super.name,
super.cwd,
super.additionalProjectPaths,
super.debugSdkLibraries,
super.debugExternalPackageLibraries,
super.showGettersInDebugViews,
super.evaluateGettersInDebugViews,
super.evaluateToStringInDebugViews,
super.sendLogsToClient,
super.sendCustomProgressEvents = null,
super.allowAnsiColorOutput,
}) : super(
// env is not supported for Dart attach because we don't spawn a process.
env: null,
);