DartCommonLaunchAttachRequestArguments constructor
DartCommonLaunchAttachRequestArguments({
- required Object? restart,
- required String? name,
- required String? cwd,
- required Map<
String, String> ? env, - required List<
String> ? additionalProjectPaths, - required bool? debugSdkLibraries,
- required bool? debugExternalPackageLibraries,
- bool? showGettersInDebugViews,
- bool? allowAnsiColorOutput,
- required bool? evaluateGettersInDebugViews,
- required bool? evaluateToStringInDebugViews,
- required bool? sendLogsToClient,
- 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,
});