parentSession property
DebugSession?
get
parentSession
When specified the newly created debug session is registered as a "child" session of this "parent" debug session.
Implementation
_i3.DebugSession? get parentSession => _i5.getProperty(
this,
'parentSession',
);
set
parentSession
(DebugSession? value)
Implementation
set parentSession(_i3.DebugSession? value) {
_i5.setProperty(
this,
'parentSession',
value ?? _i6.undefined,
);
}