compact property
bool?
get
compact
Controls if the debug session's parent session is shown in the CALL STACK view even if it has only a single child. By default, the debug session will never hide its parent. If compact is true, debug sessions with a single child are hidden in the CALL STACK view to make the tree more compact.
Implementation
_i2.bool? get compact => _i5.getProperty(
this,
'compact',
);
set
compact
(bool? value)
Implementation
set compact(_i2.bool? value) {
_i5.setProperty(
this,
'compact',
value ?? _i6.undefined,
);
}