EaseLinearInOut method

double EaseLinearInOut(
  1. num t,
  2. num b,
  3. num c,
  4. num d,
)

Linear In Out

Implementation

double EaseLinearInOut(num t, num b, num c, num d) => run(
  () => _debugLabel('EaseLinearInOut', t, b, c, d),
  () => c*t/d + b,
);