AnimateToInput constructor

const AnimateToInput({
  1. required GlobalKey<AnimateFromState> key,
  2. required Duration duration,
  3. required Curve curve,
})

Creates an AnimateToInput with the given parameters.

Implementation

const AnimateToInput({
  required this.key,
  required this.duration,
  required this.curve,
});