AnimatedButtonWrapper constructor

const AnimatedButtonWrapper({
  1. Key? key,
  2. required Widget child,
  3. required ButtonAnimationStyle animationStyle,
  4. bool isLoading = false,
  5. VoidCallback? onPressed,
})

Implementation

const AnimatedButtonWrapper({
  super.key,
  required this.child,
  required this.animationStyle,
  this.isLoading = false,
  this.onPressed,
});