ZoomIn constructor

const ZoomIn({
  1. Key? key,
  2. required Widget child,
  3. int? delay,
  4. bool animate = true,
})

Implementation

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