RippleContainer constructor

const RippleContainer({
  1. Key? key,
  2. required Widget child,
  3. double? width,
  4. double? height,
  5. ContainerDecoration? decoration,
  6. dynamic onTap()?,
  7. dynamic onLongPress()?,
})

Implementation

const RippleContainer({
  super.key,
  required this.child,
  this.width,
  this.height,
  this.decoration,
  this.onTap,
  this.onLongPress,
});