DartAttachRequestArguments constructor

DartAttachRequestArguments({
  1. String? vmServiceUri,
  2. String? vmServiceInfoFile,
  3. Object? restart,
  4. String? name,
  5. String? cwd,
  6. List<String>? additionalProjectPaths,
  7. bool? debugSdkLibraries,
  8. bool? debugExternalPackageLibraries,
  9. bool? showGettersInDebugViews,
  10. bool? evaluateGettersInDebugViews,
  11. bool? evaluateToStringInDebugViews,
  12. bool? sendLogsToClient,
  13. bool? sendCustomProgressEvents = null,
  14. 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,
      );