suppressSaveBeforeStart property
      
      bool?
      get
      suppressSaveBeforeStart
      
    
    
When true, a save will not be triggered for open editors when starting a debug session, regardless of the value of the debug.saveBeforeStart setting.
Implementation
_i2.bool? get suppressSaveBeforeStart => _i5.getProperty(
      this,
      'suppressSaveBeforeStart',
    );
      
      set
      suppressSaveBeforeStart
      (bool? value) 
      
    
    
    
Implementation
set suppressSaveBeforeStart(_i2.bool? value) {
  _i5.setProperty(
    this,
    'suppressSaveBeforeStart',
    value ?? _i6.undefined,
  );
}