KntRipple constructor

const KntRipple({
  1. Key? key,
  2. required Widget child,
  3. void onTap()?,
  4. BorderRadius? borderRadius,
  5. Color? splashColor,
  6. Color? highlightColor,
  7. Color? backgroundColor,
})

Implementation

const KntRipple({
  super.key,
  required this.child,
  this.onTap,
  this.borderRadius,
  this.splashColor,
  this.highlightColor,
  this.backgroundColor,
});