DartCommonLaunchAttachRequestArguments constructor

DartCommonLaunchAttachRequestArguments({
  1. required Object? restart,
  2. required String? name,
  3. required String? cwd,
  4. required Map<String, String>? env,
  5. required List<String>? additionalProjectPaths,
  6. required bool? debugSdkLibraries,
  7. required bool? debugExternalPackageLibraries,
  8. bool? showGettersInDebugViews,
  9. bool? allowAnsiColorOutput,
  10. required bool? evaluateGettersInDebugViews,
  11. required bool? evaluateToStringInDebugViews,
  12. required bool? sendLogsToClient,
  13. bool? sendCustomProgressEvents = false,
})

Implementation

DartCommonLaunchAttachRequestArguments({
  required this.restart,
  required this.name,
  required this.cwd,
  required this.env,
  required this.additionalProjectPaths,
  required this.debugSdkLibraries,
  required this.debugExternalPackageLibraries,
  // TODO(dantup): Make this 'required' after Flutter subclasses have been
  //  updated.
  this.showGettersInDebugViews,
  // TODO(dantup): Make this 'required' after Flutter subclasses have been
  //  updated.
  this.allowAnsiColorOutput,
  required this.evaluateGettersInDebugViews,
  required this.evaluateToStringInDebugViews,
  required this.sendLogsToClient,
  this.sendCustomProgressEvents = false,
});