PulseButton constructor
- Key? key,
- required Widget child,
- VoidCallback? onPressed,
- Color? pulseColor,
- Color? backgroundColor,
- double borderRadius = 12,
- bool showPulse = true,
- EdgeInsetsGeometry? padding,
Implementation
const PulseButton({
super.key,
required this.child,
this.onPressed,
this.pulseColor,
this.backgroundColor,
this.borderRadius = 12,
this.showPulse = true,
this.padding,
});