MInkWell constructor

const MInkWell({
  1. Key? key,
  2. ShapeBorder? customBorder,
  3. void onTap()?,
  4. void onTapDown()?,
  5. BorderRadius? borderRadius,
  6. Widget? child,
  7. Size? size,
  8. Color? color,
})

Implementation

const MInkWell({
  super.key,
  this.customBorder,
  this.onTap,
  this.onTapDown,
  this.borderRadius,
  this.child,
  this.size,
  this.color,
});