StepTween constructor

StepTween({
  1. int? begin,
  2. int? end,
})

Creates an int tween that floors.

The begin and end properties must be non-null before the tween is first used, but the arguments can be null if the values are going to be filled in later.

Implementation

StepTween({ super.begin, super.end });