BaseInkWell constructor

BaseInkWell({
  1. required Widget child,
  2. Color? color,
  3. Color? pressedColor,
  4. BorderRadius? borderRadius,
  5. VoidCallback? onPressed,
  6. VoidCallback? onLongPress,
})

Implementation

BaseInkWell(
    {required this.child,
    this.color,
    this.pressedColor,
    this.borderRadius,
    this.onPressed,
    this.onLongPress});