NiceRipple constructor

const NiceRipple({
  1. Widget? child,
  2. Key? key,
  3. Color? rippleColor,
  4. Duration? duration,
  5. VoidCallback? onTap,
  6. BoxShape? rippleShape,
  7. double? radius,
  8. double? lowerBound,
  9. int? rippleLength,
  10. Curve? curve,
})

Implementation

const NiceRipple({
  this.child,
  Key? key,
  this.rippleColor,
  this.duration,
  this.onTap,
  this.rippleShape,
  this.radius,
  this.lowerBound,
  this.rippleLength,
  this.curve,
}) : super(key: key);