SpringState constructor

SpringState({
  1. required double length,
  2. required double force,
  3. required double velocity,
})

Implementation

SpringState({
  required this.length,
  required this.force,
  required this.velocity,
});