CustomInkWell constructor

const CustomInkWell({
  1. Key? key,
  2. required ClickProps clickProps,
  3. GestureTapCallback? onTap,
  4. Widget? child,
})

Implementation

const CustomInkWell({
  super.key,
  required this.clickProps,
  this.onTap,
  this.child,
});