ios static method

SpringSim ios({
  1. double from = 0.0,
  2. double to = 1.0,
})

iOS-style interactive spring — tight and responsive.

Implementation

static SpringSim ios({double from = 0.0, double to = 1.0}) =>
    SpringSim(from: from, to: to, stiffness: 300, damping: 30);