easeInOut constant

Cubic const easeInOut

A cubic animation curve that starts slowly, speeds up, and then ends slowly.

This is the same as the CSS easing function ease-in-out.

Implementation

static const Cubic easeInOut = Cubic(0.42, 0.0, 0.58, 1.0);