Curve.steps constructor

const Curve.steps(
  1. int steps, {
  2. required StepJump jump,
})

Displays the transition along steps stops along the transition, displaying each stop for equal lengths of time. How the transition behaves at the start and end is defined by jump.

Implementation

const factory Curve.steps(int steps, {required StepJump jump}) = _StepsCurve;