ElasticInDown constructor

ElasticInDown(
  1. {dynamic key,
  2. required Widget child,
  3. Duration duration = const Duration(milliseconds: 1500),
  4. Duration delay = Duration.zero,
  5. dynamic controller(
    1. AnimationController
    )?,
  6. bool manualTrigger = false,
  7. bool animate = true,
  8. double from = 200,
  9. double to = 100,
  10. dynamic onFinish(
    1. AnimateDoDirection direction
    )?,
  11. Curve curve = Curves.elasticOut}
)

Implementation

ElasticInDown(
    {key,
    required this.child,
    this.duration = const Duration(milliseconds: 1500),
    this.delay = Duration.zero,
    this.controller,
    this.manualTrigger = false,
    this.animate = true,
    this.from = 200,
    this.to = 100,

    /// Is marked as optional, but I have plans to use it later
    this.onFinish,
    this.curve = Curves.elasticOut})
    : super(key: key) {
  if (manualTrigger == true && controller == null) {
    throw FlutterError('If you want to use manualTrigger:true, \n\n'
        'Then you must provide the controller property, that is a callback like:\n\n'
        ' ( controller: AnimationController) => yourController = controller \n\n');
  }
}