WidgetRippleButton constructor

const WidgetRippleButton({
  1. Key? key,
  2. Color? color,
  3. BorderRadius borderRadius = const BorderRadius.only(),
  4. double elevation = 0,
  5. VoidCallback? onTap,
  6. Widget? child,
  7. Color? shadowColor,
  8. bool enable = true,
})

Implementation

const WidgetRippleButton({
  super.key,
  this.color,
  this.borderRadius = const BorderRadius.only(),
  this.elevation = 0,
  this.onTap,
  this.child,
  this.shadowColor,
  this.enable = true,
});