Transition constructor

Transition({
  1. required Duration duration,
  2. Curve? curve,
  3. bool repeat = false,
  4. bool repeatReverse = false,
})

Implementation

Transition({
  required this.duration,
  this.curve,
  this.repeat = false,
  this.repeatReverse = false,
});