AnimatedCard constructor

AnimatedCard({
  1. required Widget child,
  2. required Animation<double> animation,
  3. required double height,
  4. required double width,
  5. Key? key,
})

Implementation

AnimatedCard(
    {required this.child,
    required this.animation,
    required this.height,
    required this.width,
    Key? key})
    : super(key: key);