TouchRippleEffect constructor

TouchRippleEffect({
  1. Key? key,
  2. Widget? child,
  3. Color? backgroundColor,
  4. void onTap()?,
  5. bool awaitAnimation = true,
  6. double? width,
  7. double? height,
  8. Color? rippleColor,
  9. BorderRadius? borderRadius,
  10. Duration? rippleDuration,
})

Implementation

TouchRippleEffect({
  Key? key,
  this.child,
  this.backgroundColor,
  this.onTap,
  this.awaitAnimation = true,
  this.width,
  this.height,
  this.rippleColor,
  this.borderRadius,
  this.rippleDuration,
}) : super(key: key);