KitInkWell constructor

const KitInkWell({
  1. required VoidCallback? onPressed,
  2. Widget? child,
  3. BorderRadius? borderRadius,
  4. ValueChanged<bool>? onHover,
  5. bool noReaction = false,
  6. MouseCursor? mouseCursor,
  7. Key? key,
})

Implementation

const KitInkWell({
  required this.onPressed,
  this.child,
  this.borderRadius,
  this.onHover,
  this.noReaction = false,
  this.mouseCursor,
  super.key,
});