ReversibleAnimation<T> constructor

ReversibleAnimation<T>(
  1. Animation<double> parent, {
  2. required Animatable<T> forward,
  3. required Animatable<T> reverse,
})

Implementation

ReversibleAnimation(
  this.parent, {
  required this.forward,
  required this.reverse,
});