UserEnterSlideAnimation constructor

const UserEnterSlideAnimation({
  1. Key? key,
  2. required Widget child,
  3. required Function onEnd,
})

Implementation

const UserEnterSlideAnimation(
    {Key? key, required this.child, required this.onEnd})
    : super(key: key);