SlideDown constructor

const SlideDown({
  1. Key? key,
  2. required Widget child,
  3. int? delay,
  4. double speed = 0.50,
  5. bool animate = true,
})

Implementation

const SlideDown(
    {Key? key,
    required this.child,
    this.delay,
    this.speed = 0.50,
    this.animate = true})
    : super(key: key);