SpringConfig constructor

const SpringConfig({
  1. double damping = 20.0,
  2. double stiffness = 180.0,
  3. double mass = 1.0,
})

Implementation

const SpringConfig({
  this.damping = 20.0,
  this.stiffness = 180.0,
  this.mass = 1.0,
});