infinityDistance property
      
      num
      get
      infinityDistance
      
    
    
Gets or sets a threshold for the distance beyond which the electrical charge forces may be ignored. The default value is 1000. The value must be larger than 1.
Implementation
_i2.num get infinityDistance => _i4.getProperty(
      this,
      'infinityDistance',
    );
      
      set
      infinityDistance
      (num value) 
      
    
    
    
Implementation
set infinityDistance(_i2.num value) {
  _i4.setProperty(
    this,
    'infinityDistance',
    value,
  );
}