PressableRipple constructor

const PressableRipple({
  1. Key? key,
  2. required Widget child,
  3. VoidCallback? onPressed,
  4. VoidCallback? onLongPressed,
  5. PressableRippleTheme? theme,
})

Implementation

const PressableRipple({
  Key? key,
  required this.child,
  this.onPressed,
  this.onLongPressed,
  this.theme,
}) : super(key: key);