DebugSession constructor
DebugSession({
- String? id,
- String? type,
- DebugSession? parentSession,
- String? name,
- WorkspaceFolder? workspaceFolder,
- DebugConfiguration? configuration,
- Future customRequest(
- String, [
- dynamic
- Future getDebugProtocolBreakpoint()?,
Implementation
factory DebugSession({
_i2.String? id,
_i2.String? type,
_i3.DebugSession? parentSession,
_i2.String? name,
_i3.WorkspaceFolder? workspaceFolder,
_i3.DebugConfiguration? configuration,
_i2.Future<_i2.dynamic> Function(
_i2.String, [
_i2.dynamic,
])? customRequest,
_i2.Future<_i2.dynamic> Function(_i3.Breakpoint)?
getDebugProtocolBreakpoint,
}) =>
DebugSession._(
id: id,
type: type,
parentSession: parentSession ?? _i6.undefined,
name: name,
workspaceFolder: workspaceFolder ?? _i6.undefined,
configuration: configuration ?? _i6.undefined,
customRequest:
customRequest == null ? null : _i5.allowInterop(customRequest),
getDebugProtocolBreakpoint: getDebugProtocolBreakpoint == null
? null
: _i5.allowInterop(getDebugProtocolBreakpoint),
);