noDebug property
bool?
get
noDebug
Controls whether this session should run without debugging, thus ignoring breakpoints. When this property is not specified, the value from the parent session (if there is one) is used.
Implementation
_i2.bool? get noDebug => _i5.getProperty(
this,
'noDebug',
);
set
noDebug
(bool? value)
Implementation
set noDebug(_i2.bool? value) {
_i5.setProperty(
this,
'noDebug',
value ?? _i6.undefined,
);
}