linear static method

double linear(
  1. double t
)

Linear easing (no acceleration or deceleration).

Implementation

static double linear(double t) => t;