AnimatedButton constructor

const AnimatedButton({
  1. Key? key,
  2. required Widget child,
  3. Widget decorator(
    1. Widget child
    ) = AnimatedButton._defaultDecorator,
  4. void onPressed()?,
  5. void onLongPress()?,
  6. bool enabled = true,
})

Implementation

const AnimatedButton({
  super.key,
  required this.child,
  this.decorator = AnimatedButton._defaultDecorator,
  this.onPressed,
  this.onLongPress,
  this.enabled = true,
});