RippleContainer constructor

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

Implementation

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