EaseFunction typedef

EaseFunction = double Function(double e)

A function type that applies an easing curve to a value between 0.0 and 1.0. It takes a value between 0.0 and 1.0 and returns a transformed value based on the specific easing curve applied.

Implementation

typedef EaseFunction = double Function(double e);